import { WidenNonLiteral } from "../_internal/types.mjs"; import { PascalCase } from "../node_modules/.pnpm/string-ts@2.3.1/node_modules/string-ts/dist/index.mjs"; //#region src/string/to-pascal-case.d.ts /** * Converts a string to **PascalCase** (`'foo-bar'` → `'FooBar'`). A string literal * is typed as the exact Pascal-cased literal; a non-literal `string` returns * `string`. * @param value - The string to convert. * @returns The Pascal-cased string. * @example * toPascalCase('foo bar'); * // 'FooBar' * @example * toPascalCase('XMLHttpRequest'); * // 'XmlHttpRequest' */ declare const toPascalCase: (value: S) => WidenNonLiteral>; //#endregion export { toPascalCase };