export declare const getWords: (str: string) => string[]; export declare const camelCaseToKebabCase: (str: string) => string; export declare const kebabCaseToCamelCase: (str: string) => string; export declare const startCase: (str: string) => string;