import type { DelimiterCase } from "./delimiter-case.js"; import type { LowerCase } from "./lower-case.js"; /** * Convert a string type to snake_case. * @example * ```ts * type SnakeCaseString = SnakeCase<"hello world">; // "hello_world" * ``` */ export type SnakeCase = LowerCase>; /** * Convert a string to snake_case. * @example * ```ts * const snakeCaseString = toSnakeCase("hello world"); // "hello_world" * ``` */ export declare function toSnakeCase(string: T): SnakeCase; //# sourceMappingURL=snake-case.d.ts.map