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