/**
* Converts a string from `camelCase` to `kebab-case`.
*
* @param input The string in `camelCase` to be converted
* @returns The string in `kebab-case`
*/
export declare function camelCaseToKebab(input: string): string;
export default camelCaseToKebab;