import { type ConverterOptions, type LocaleConfig, type LocaleInterface, type NumberInput, type OrdinalOptions, type ToWordsOptions } from '../types.js'; import { ToWordsCore } from '../ToWordsCore.js'; export default class Locale implements LocaleInterface { config: LocaleConfig; } /** * ToWords class pre-configured for this locale. * This is a lightweight version that only bundles this specific locale. * * @example * import { ToWords } from 'to-words/as-IN'; * const tw = new ToWords(); * tw.convert(1234); */ export declare class ToWords extends ToWordsCore { constructor(options?: ToWordsOptions); } export declare function toWords(number: NumberInput, options?: ConverterOptions): string; export declare function toOrdinal(number: NumberInput, options?: OrdinalOptions): string; export declare function toCurrency(number: NumberInput, options?: ConverterOptions): string;