/** * Converts a numeric value to Belgian French words. * * @param {number | string | bigint} value - The numeric value to convert * @param {Object} [options] - Optional configuration * @param {boolean} [options.withHyphenSeparator=false] - Use hyphens between words * @returns {string} The number in Belgian French words */ export function toCardinal(value: number | string | bigint, options?: { withHyphenSeparator?: boolean | undefined; }): string; /** * Converts a numeric value to Belgian French ordinal words. * * Belgian French ordinals: premier (1st), then cardinal + ième. * Special rules: quatre→quatrième, cinq→cinquième, neuf→neuvième. * * @param {number | string | bigint} value - The numeric value to convert (positive integer) * @returns {string} The number as ordinal words * @throws {TypeError} If value is not a valid numeric type * @throws {RangeError} If value is negative, zero, or has a decimal part * * @example * toOrdinal(1) // 'premier' * toOrdinal(2) // 'deuxième' * toOrdinal(70) // 'septantième' * toOrdinal(90) // 'nonantième' */ export function toOrdinal(value: number | string | bigint): string; /** * Converts a numeric value to Belgian French currency words (Euro). * * @param {number | string | bigint} value - The currency amount to convert * @param {Object} [options] - Optional configuration * @param {boolean} [options.and=true] - Use "et" between euros and centimes * @returns {string} The amount in Belgian French currency words * @throws {TypeError} If value is not a valid numeric type * @throws {Error} If value is not a valid number format * * @example * toCurrency(42.50) // 'quarante-deux euros et cinquante centimes' * toCurrency(1) // 'un euro' * toCurrency(0.99) // 'nonante-neuf centimes' * toCurrency(0.01) // 'un centime' * toCurrency(42.50, { and: false }) // 'quarante-deux euros cinquante centimes' */ export function toCurrency(value: number | string | bigint, options?: { and?: boolean | undefined; }): string;