import { SQLParser } from '../grammar/SQLParser'; import { TemplateParser } from '../grammar/TemplateParser'; export declare function parseSQL(input: string): SQLParser; export declare function parseTemplate(input: string): TemplateParser; export declare function resolveSlashs(cmm: string): string; export declare function recase(wordcase: string, input: string, upperDb?: string): string; export declare function canUpper(entry: string, db?: string): boolean; export declare function isLowerCase(entry: string): boolean; export declare function isUpperCase(entry: string): boolean; export declare function camelCase(titleCase: string): string; export declare function firstLetters(typeName: string): string; export declare function wrapText(text: string, maxChars: number): string[];