export { lowerFirst, upperFirst, camelCase } from 'lodash-es';
export declare const kebabCase: (s: string) => string;
export declare const pascalCase: (s: string) => string;
export declare const constantCase: (s: string) => string;
export declare const dotCase: (s: string) => string;
export declare const pathCase: (s: string) => string;
export declare const sentenceCase: (s: string) => Capitalize<string>;
export declare const titleCase: (s: string) => string;
