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