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