export interface Currency { currencyCode: string; currencySymbol: string; } export interface Amount extends Currency { amount: number; } export declare const toAmount: (amount: number, currency_code: string, currency_symbol: string) => Amount; export declare const toAmountWC: (amount: number, currency: Currency) => Amount;