import type { PascalCase, PascalCaseOptions } from "./pascal-case.js"; import type { DelimiterCase } from "./delimiter-case.js"; export type TitleCaseOptions = PascalCaseOptions; /** * Convert a string type to Title Case. * @example * ```ts * type TitleCaseString = TitleCase<"hello world">; // "Hello World" * ``` */ export type TitleCase = DelimiterCase, " ">; /** * Convert a string to Title Case. * @example * ```ts * const titleCaseString = toTitleCase("hello world"); // "Hello World" * ``` */ export declare function toTitleCase(string: T, options?: O): TitleCase; //# sourceMappingURL=title-case.d.ts.map