/**
 * Ensures that the N1QL identifier is escaped with backticks
 */
export declare function ensureEscaped(identifier: string): string;
export declare function ensureEscaped(identifier: null | undefined): null | undefined;
export declare function ensureEscaped(identifier: string | null | undefined): string | null | undefined;
