/**
 * Tries its best to escape the value according to its type.
 *
 * Try to not use this function; although it protects against SQL injections,
 * it's not aware of the actual field type, so it e.g. cannot prevent a bigint
 * overflow SQL error.
 */
export declare function escapeAny(v: unknown): string;
//# sourceMappingURL=escapeAny.d.ts.map