export declare const camelCaseToDashCase: (str: string) => string; export declare const dashCaseToCamelCase: (str: string) => string; export declare const capitalize: (str: string) => string; export declare const camelize: (str: string) => string; export declare const dashCaseToUpperCamelCase: (str: string) => string; export declare const removeIllegalCharacters: (str: string) => string; export declare const slugify: (str: string) => string; export declare const createStateOrPropStoringValue: (value: string) => string; export declare const createStateStoringFunction: (value: string) => string; export declare const addSpacesToEachLine: (spaces: string, str: string) => string; export declare const removeLastEmptyLine: (str: string) => string; export declare const encode: (str: string) => string; export declare const generateRandomString: () => string; export declare const generateCSSVariableName: (name: string) => string; //# sourceMappingURL=string-utils.d.ts.map