export declare const capWord: (word: string) => string; export declare const upperWord: (word: string) => string; export declare const lowerWord: (word: string) => string; export declare const jiggleWord: (word: string) => string; export declare const wiggleWord: (word: string) => string; export declare const removeSpaces: (sentence: string) => string; export declare const trimSpaces: (sentence: string) => string; export declare const removeNonAlpha: (sentence: string) => string; export declare const capCase: (sentence: string) => string; export declare const upperCase: (sentence: string) => string; export declare const lowerCase: (sentence: string) => string; export declare const jiggleCase: (sentence: string) => string; export declare const wiggleCase: (sentence: string) => string; export declare const kababCase: (sentence: string) => string; export declare const snakeCase: (sentence: string) => string; export declare const camelCase: (sentence: string) => string; export declare const pascalCase: (sentence: string) => string;