export declare const freeText: (text: string | string[]) => string;
export declare const splitWords: (str: string) => string[];
export declare const toUpperFirst: (str: string) => string;
export declare const toCamelCase: (str: string) => string;
