import type { CamelCase, CamelCaseOptions } from "./camel-case.js"; export type PascalCaseOptions = CamelCaseOptions; /** * Convert a string type to PascalCase. * @example * ```ts * type PascalCaseString = PascalCase<"hello world">; // "HelloWorld" * ``` */ export type PascalCase = Capitalize>; /** * Convert a string to PascalCase. * @example * ```ts * const pascalCaseString = toPascalCase("hello world"); // "HelloWorld" * ``` */ export declare function toPascalCase(string: T, options?: O): PascalCase; //# sourceMappingURL=pascal-case.d.ts.map