type Casing = 'original' | 'lowercase' | 'uppercase' | 'sentence';
export declare function changeTextCasing(str: string, casing?: Casing | ((str: string) => string)): string | undefined;
export {};
