export declare function isIdentStart(c: string): boolean; export declare function isIdent(c: string): boolean; export declare function isHex(c: string): boolean; export declare const identEscapeChars: Record; export declare const stringRenderEscapeChars: Record; export declare const whitespaceChars: Record; export declare const quoteChars: Record; export declare const digitsChars: Record; export declare const maxHexLength = 6; export declare function escapeIdentifier(s: string): string; export declare function escapeString(s: string): string;