/** * Converts a string to kebab-case * * @example * toKebabCase("Hello World") // "hello-world" * toKebabCase("CamelCaseString") // "camel-case-string" * toKebabCase("") // "" */ export declare function toKebabCase(str: string): string;