type SelectedInputType = 'fiat' | 'crypto'; type AmountInputTypeSwitchProps = { selectedInputType: SelectedInputType; setSelectedInputType: (type: SelectedInputType) => void; asset: string; fiatAmount: string; cryptoAmount: string; exchangeRate: number; exchangeRateLoading: boolean; loadingDisplay?: React.ReactNode; currency: string; className?: string; }; export declare function AmountInputTypeSwitch({ selectedInputType, setSelectedInputType, asset, fiatAmount, cryptoAmount, exchangeRate, exchangeRateLoading, currency, loadingDisplay, className, }: AmountInputTypeSwitchProps): string | number | bigint | boolean | Iterable | Promise> | Iterable | null | undefined> | import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=AmountInputTypeSwitch.d.ts.map