/** * Marathi (India) language converter * * CLDR: mr-IN | Marathi as used in India * * Key features: * - Indian numbering system (हजार, लाख, कोटी) * - Devanagari script * - 3-2-2 grouping pattern (last 3 digits, then groups of 2) * - Complete word forms for 0-99 * - Per-digit decimal reading */ export declare const cardinalMax: bigint; export declare const ordinalMax: bigint; export declare const currencyMax: bigint; /** * Converts a numeric value to Marathi words. * @param {number | string | bigint} value - The numeric value to convert * @returns {string} The number in Marathi words */ declare function toCardinal(value: number | string | bigint): string; /** * Converts a numeric value to Marathi ordinal words. * @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) // 'पहिला' * toOrdinal(2) // 'दुसरा' * toOrdinal(3) // 'तिसरा' * toOrdinal(10) // 'दहावा' */ declare function toOrdinal(value: number | string | bigint): string; /** * Converts a numeric value to Marathi currency words (Indian Rupee). * @param {number | string | bigint} value - The currency amount to convert * @returns {string} The amount in Marathi 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) // 'बेचाळीस रुपये पन्नास पैसे' * toCurrency(1) // 'एक रुपया' * toCurrency(0.01) // 'एक पैसा' */ declare function toCurrency(value: number | string | bigint): string; export { toCardinal, toOrdinal, toCurrency };