/** * Converts a numeric value to Georgian 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 * @returns {string} The number in Georgian words * @throws {TypeError} If value is not a valid numeric type * @throws {Error} If value is not a valid number format * * @example * toCardinal(21) // 'ოცდაერთი' * toCardinal(100) // 'ასი' * toCardinal(1000) // 'ათასი' */ export function toCardinal(value: number | string | bigint): string; /** * Converts a numeric value to Georgian ordinal words. * * @param {number | string | bigint} value - The numeric value to convert * @returns {string} The ordinal in Georgian words * @throws {TypeError} If value is not a valid numeric type * @throws {Error} If value is not a positive integer * * @example * toOrdinal(1) // 'პირველი' * toOrdinal(10) // 'მეათე' * toOrdinal(21) // 'მეოცდაერთე' */ export function toOrdinal(value: number | string | bigint): string; /** * Converts a numeric value to Georgian Lari currency words. * * @param {number | string | bigint} value - The numeric value to convert * @returns {string} The currency in Georgian words * @throws {TypeError} If value is not a valid numeric type * @throws {Error} If value is not a valid number format * * @example * toCurrency(1) // 'ერთი ლარი' * toCurrency(2.50) // 'ორი ლარი ორმოცდაათი თეთრი' */ export function toCurrency(value: number | string | bigint): string;