import { CurrencyCode } from '../constants/currency-code'; import { ISO6391LanguageCode } from '../constants/iso-6391-language-code'; import { ICurrency } from '../interfaces/currency'; export declare class Currency implements ICurrency { private code; private decimals; private names; constructor(options: { code: CurrencyCode; decimals: number; names: { [languageCode in ISO6391LanguageCode]?: string; }; }); getCode(): CurrencyCode; getDecimals(): number; getName(languageCode: ISO6391LanguageCode): string | undefined; }