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