/** * Convert a string to kebab-case * * @note * This isn't fully generic/bullet proof, but it works for our use case atm * * @example * ```ts * kebabCase("hello_world") // #=> hello-world * kebabCase("hello-world") // #=> hello-world * kebabCase("hello world") // #=> hello-world * kebabCase("HelloWorld") // #=> hello-world * ``` */ declare function kebabCase(value: string): string; /** * Convert a path to kebab-case * * @example * ```ts * kebabCasePath("hello_world/helloWorld/hello-world") // #=> hello-world/hello-world/hello-world * ``` */ declare function kebabCasePath(filepath: string): string; export { kebabCase, kebabCasePath, };