import type BigNumber from 'bignumber.js'; import { type StyleProp, type ViewStyle } from 'react-native'; import { type SwapTokenWithBalance } from '@reown/appkit-common-react-native'; export interface SwapInputProps { token?: SwapTokenWithBalance; value?: string; gasPrice?: number; style?: StyleProp; loading?: boolean; loadingValues?: boolean; onTokenPress?: () => void; onMaxPress?: () => void; onChange?: (value: string) => void; balance?: BigNumber; marketValue?: number; editable?: boolean; autoFocus?: boolean; testID?: string; } export declare function SwapInput({ token, value, style, loading, loadingValues, onTokenPress, onMaxPress, onChange, marketValue, editable, autoFocus, testID }: SwapInputProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map