import { Currency } from './CurrencyProps'; interface TableFuncProps { value: Currency; oppositeValue: Currency; handleConvert: (currencyFrom?: Currency, currencyTo?: Currency) => void; } export declare const callbackCurrencySelect: (props: TableFuncProps) => void; export {};