interface CurrencyProperties { id?: string; label?: string; name: string; type: string; defer?: boolean; } declare const _default: (props: CurrencyProperties) => JSX.Element; export default _default;