type SupportedCase = 'kebab' | 'snake' | 'space' | 'camel' | 'sentence' | 'capitalize' | 'capitalizeSentence'; export declare function formatCase(text: string, convertCase: SupportedCase | string): string; export {};