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