import { type ControlProps } from '../../model/ControlProps'; import { type PlaceholderProps } from '../../model/PlaceholderProps'; import { type Currency } from './CurrencyProps'; import { type ExchangeCurrencyItem } from './ExchangeCurrencyCalculator'; interface InputProps extends PlaceholderProps, ControlProps { rates: ExchangeCurrencyItem[]; selected: string; setSelected: (value: Currency) => void; } export declare function renderInput(props: InputProps): any; export {};