type FunctionCase = 'capitalize' | 'lowercase' | 'unchanged' | 'uppercase'; type KeywordCase = 'capitalize' | 'lowercase' | 'unchanged' | 'uppercase'; type UserConfigurationType = { readonly anonymize?: boolean; readonly commaBreak?: boolean; readonly functionCase?: FunctionCase; readonly keywordCase?: KeywordCase; readonly noRcFile?: boolean; readonly placeholder?: string; readonly spaces?: number; readonly stripComments?: boolean; readonly tabs?: boolean; }; export declare const format: (sql: string, userConfiguration?: UserConfigurationType) => string; export {}; //# sourceMappingURL=format.d.ts.map