import React from 'react'; import { Control } from 'react-hook-form'; export type CurrencyOption = { code: string; symbol: string; name: string; }; export interface CurrencySelectProps { options: CurrencyOption[]; name: string; control: Control; disabled?: boolean; className?: string; cy?: { code?: string; symbol?: string; name?: string; currencyName?: string; cancel?: string; }; } declare const CurrencySelect: React.FC; export default CurrencySelect;