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