import { WidenNonLiteral } from "../_internal/types.mjs"; import { DelimiterCase } from "../node_modules/.pnpm/string-ts@2.3.1/node_modules/string-ts/dist/index.mjs"; //#region src/string/to-lower-case.d.ts /** * Converts a string to **lower-case words joined by spaces** (`'fooBar'` → * `'foo bar'`). A string literal is typed as the exact result; a non-literal * `string` returns `string`. * @param value - The string to convert. * @returns The space-joined lower-cased string. * @example * toLowerCase('fooBar'); * // 'foo bar' * @example * toLowerCase('XMLHttpRequest'); * // 'xml http request' */ declare const toLowerCase: (value: S) => WidenNonLiteral>>; //#endregion export { toLowerCase };