import PropTypes from 'prop-types'; declare namespace io.cheng.flowerate.v0.enums { type Currency = 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTC' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XAG' | 'XAU' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW' | 'ZWL'; type CurrencyRateEvent = 'CurrencyRateChange'; } declare namespace io.cheng.flowerate.v0.models { interface FixerErrorDetail { readonly 'code': number; readonly 'type': string; } interface FixerRatesFailureResponse { readonly 'discriminator': 'FixerRatesFailureResponse'; readonly 'success': boolean; readonly 'error': io.cheng.flowerate.v0.models.FixerErrorDetail; } interface FixerRatesSuccessResponse { readonly 'discriminator': 'FixerRatesSuccessResponse'; readonly 'success': boolean; readonly 'base': io.cheng.flowerate.v0.enums.Currency; readonly 'rates': Record; readonly 'timestamp': number; } interface RateBetweenResponse { readonly 'base': io.cheng.flowerate.v0.enums.Currency; readonly 'target': io.cheng.flowerate.v0.enums.Currency; readonly 'rate': number; readonly 'timestamp': number; } interface RateToAllResponse { readonly 'base': io.cheng.flowerate.v0.enums.Currency; readonly 'rates': Record; readonly 'timestamp': number; } interface WebhookDetail { readonly 'currencyRateEvent': io.cheng.flowerate.v0.enums.CurrencyRateEvent; readonly 'url': string; } interface WebhookRegisterRequest { readonly 'clientId': string; readonly 'webhooks': io.cheng.flowerate.v0.models.WebhookDetail[]; } } declare namespace io.cheng.flowerate.v0.unions { type FixerRateResponse = (io.cheng.flowerate.v0.models.FixerRatesSuccessResponse | io.cheng.flowerate.v0.models.FixerRatesFailureResponse); } export const currency: PropTypes.Requireable; export const currencyRateEvent: PropTypes.Requireable; export const fixerErrorDetail: PropTypes.Requireable; export const fixerRatesFailureResponse: PropTypes.Requireable; export const fixerRatesSuccessResponse: PropTypes.Requireable; export const rateBetweenResponse: PropTypes.Requireable; export const rateToAllResponse: PropTypes.Requireable; export const webhookDetail: PropTypes.Requireable; export const webhookRegisterRequest: PropTypes.Requireable; export const fixerRateResponse: PropTypes.Requireable;