/** * A currency */ export declare const CurrencyType: import("../utils/schema").SchemaObjectType<{ /** * Will return a number that describes the number of additional decimal places * to include when displaying the person's currency. For example, the API will * return 100 because USD is usually displayed with two decimal places. JPY * does not use decimal places, so the API will return 1. */ currencyOffset: { default: true; type: "Int"; }; /** * The exchange rate between the person's preferred currency and US Dollars */ usdExchange: { default: true; type: "Float"; }; /** * The inverse of usdExchange */ usdExchangeInverse: { default: true; type: "Float"; }; /** * The ISO-4217-3 code for the person's preferred currency (defaulting to USD * if the person hasn't set one) */ userCurrency: { default: true; type: "String"; }; }>;