/** * @description Returns the given value converted to kebab-case. * @example toCamelCase('paddingTop') => 'padding-top' * */ export declare const toHyphenCase: (value: string) => string;