import SqlString from "sqlstring"; import { type Serializable } from "../../core/data/types.js"; export * from "../../core/dialect/utils.js"; export declare const escapeIdentifier: (value: string | undefined) => string; export declare const escapeLiteral: typeof SqlString.escape; export declare const serializeToSQL: (type: string, value: Serializable) => string; export declare const formatValues: (values: Array>) => string;