/** * Converts a numeric value to Gujarati words. * * @param {number | string | bigint} value - The numeric value to convert * @returns {string} The number in Gujarati words */ export function toCardinal(value: number | string | bigint): string; /** * Converts a numeric value to Gujarati 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(10) // 'દસમું' */ export function toOrdinal(value: number | string | bigint): string; /** * Converts a numeric value to Gujarati currency words (Indian Rupee). * * @param {number | string | bigint} value - The currency amount to convert * @returns {string} The amount in Gujarati 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) // 'એક પૈસો' */ export function toCurrency(value: number | string | bigint): string;