/** * Georgian (bare-tag alias) * * `ka` resolves to ka-GE, currently the only Georgian variant this * package implements. This file exists purely so `n2words/ka` works * without requiring a region subtag; it is not a claim that ka-GE speaks * for every Georgian-speaking region. See docs/bare-tag-aliases.md for the * full rationale and LANGUAGES.md for the complete family/variant table. * * `toCurrency` is the one form this file doesn't forward untouched: a bare * tag names a language, and a default currency belongs to a country, so * `currency` is required here rather than inherited. See * docs/bare-tag-aliases.md's "Bare tags carry no default currency". */ export * from './ka-GE.js'; export declare const aliasOf = "ka-GE"; export type CurrencyOptions = Omit & Required>; /** * Every ka-GE currency default except the currency itself. * @type {Omit, 'currency'>} */ export declare const currencyDefaults: Omit, 'currency'>; /** * Converts a numeric value to Georgian currency words. * * Unlike ka-GE's, this needs an explicit `currency`: `ka` is a language * and has no country to take a default from. * @param {number | string | bigint} value - The currency amount to convert * @param {CurrencyOptions} options - Configuration; `currency` is required * @returns {string} The amount in Georgian currency words * @throws {TypeError} If `currency` is omitted, or options are malformed * @example * toCurrency(42.50, { currency: 'GEL' }) // 'ორმოცდაორი ლარი ორმოცდაათი თეთრი' */ declare function toCurrency(value: number | string | bigint, options: CurrencyOptions): string; export { toCurrency };