/** * camelToKebab * * @example * ```ts * camelToKebab('TxJs') * // => tx-js * camelToKebab('helloWorld') * // => hello-world * ``` */ export declare function camelToKebab(input?: string): string;