/** * Converts a numeric value to Dutch words. * * This is the main public API. It accepts any valid numeric input * (number, string, or bigint) and handles parsing internally. * * @param {number | string | bigint} value - The numeric value to convert * @param {Object} [options] - Optional configuration * @param {boolean} [options.accentOne=true] - Use "één" instead of "een" * @param {boolean} [options.includeOptionalAnd=false] - Include "en" before small numbers * @param {boolean} [options.noHundredPairing=false] - Disable hundred pairing (1104→duizend honderdvier) * @returns {string} The number in Dutch words * @throws {TypeError} If value is not a valid numeric type * @throws {Error} If value is not a valid number format * * @example * toCardinal(21) // 'eenentwintig' * toCardinal(1) // 'één' * toCardinal(1, {accentOne: false}) // 'een' * toCardinal(1104) // 'elfhonderd vier' */ export function toCardinal(value: number | string | bigint, options?: { accentOne?: boolean | undefined; includeOptionalAnd?: boolean | undefined; noHundredPairing?: boolean | undefined; }): string; /** * Converts a number to Dutch ordinal words. * * @param {number | string | bigint} value - The number to convert * @returns {string} Dutch ordinal words * * @example * toOrdinal(1) // 'eerste' * toOrdinal(21) // 'eenentwintigste' * toOrdinal(100) // 'honderdste' */ export function toOrdinal(value: number | string | bigint): string; /** * Converts a number to Dutch currency words (Euro). * * @param {number | string | bigint} value - The amount to convert * @param {Object} [options] * @param {boolean} [options.and=true] - Include "en" between euros and cents * @returns {string} Dutch currency words * * @example * toCurrency(42.50) // 'tweeënveertig euro en vijftig cent' * toCurrency(1) // 'één euro' * toCurrency(0.01) // 'één cent' */ export function toCurrency(value: number | string | bigint, options?: { and?: boolean | undefined; }): string;