export declare const capitalCase: (input: string) => string;
export declare const snakeCase: (input: string) => string;
export declare const sentenceCase: (input: string) => string;
export declare const pascalCase: (input: string) => string;
