export declare const placeholderRegExp: RegExp; interface SQL { toSQL: () => string; } export type BaseType = string | boolean | number | bigint | Uint8Array | null | undefined | Date | SQL | Record; export type ValuesType = BaseType | BaseType[] | Record; export interface Parameters { anon: BaseType[]; named?: Record; } export declare function getParameters(...values: ValuesType[]): Parameters; export declare function bindValues(sql: string, parameters?: Parameters): string; export {}; //# sourceMappingURL=binding.d.ts.map