export type Escapable = undefined | null | boolean | number | string | Date; export function escapeId(val: string, forbidQualified?: boolean): string; export function escape(val: Escapable | Escapable[], timeZone?: string, dialect?: string, format?: string): string; export function format(sql: string, values: unknown[], timeZone?: string, dialect?: string): string; export function formatNamedParameters(sql: string, values: unknown[], timeZone?: string, dialect?: string): string;