interface Currency {
    displayName: string;
    numericCode: number;
    defaultFractionDigits: number;
    subUnit: number;
    symbolSpaced: boolean;
    symbolPosition: "after" | "before";
    symbol: string;
    isoCode: "BRL";
}
declare const BRL: Currency;
export { BRL };
//# sourceMappingURL=BRL.d.ts.map