/**
 * Escape identifier (only the PostgreSQL format is currently supported).
 */
export declare function escapeIdentifier(identifier: string): string;
/**
 * Escape literal (only the PostgreSQL format is currently supported).
 */
export declare function escapeLiteral(literal: string): string;
