/** * It replaces all uppercase letters in a string with a dash followed by the lowercase version of that letter * * @param {string} str - string - The string to convert. * @returns {string} The dash case format like: 'a-b-c'. */ export declare const camelToDashCase: (str: string) => string; /** * It capitalizes the first letter after the - in the string. * * @param {string} str - string - The string to convert like: 'white-space'. * @returns {string} The camel case format like: 'whiteSpace'. */ export declare const dashCaseToCamel: (str: string) => string;