@brave/swap-interface
Version:
Brave Swap - an open-source swap interface by Brave, focussed on usability and multi-chain support.
14 lines (13 loc) • 488 B
TypeScript
import { GasEstimate, GasFeeOption } from '../../../constants/types';
interface Props {
useDirectRoute: boolean;
slippageTolerance: string;
selectedGasFeeOption: GasFeeOption;
gasEstimates: GasEstimate;
setUseDirectRoute: (value: boolean) => void;
setSlippageTolerance: (value: string) => void;
setSelectedGasFeeOption: (value: GasFeeOption) => void;
onClose: () => void;
}
export declare const SwapSettingsModal: (props: Props) => JSX.Element;
export {};