import type { DelimiterCase } from "./delimiter-case.js"; import type { LowerCase } from "./lower-case.js"; /** * Convert a string type to kebab-case. * @example * ```ts * type KebabCaseString = KebabCase<"hello world">; // "hello-world" * ``` */ export type KebabCase = LowerCase>; /** * Convert a string to kebab-case. * @example * ```ts * const kebabCaseString = toKebabCase("hello world"); // "hello-world" * ``` */ export declare function toKebabCase(string: T): KebabCase; //# sourceMappingURL=kebab-case.d.ts.map