export declare enum StringCases { unknown = 0, lowerCase = 1, upperCase = 2, camelCase = 3, pascalCase = 4, snakeCase = 5, kebabCase = 6 } export declare function breakWords(text: string): IterableIterator; export declare function detectCase(name: string): StringCases; export declare function capitalize(word: string): string; export declare function toCase(targetCase: StringCases, text: any): string; export declare const camelCase: (word: string) => string; export declare const pascalCase: (word: string) => string; export declare const kebabCase: (word: string) => string;