import React from "react"; interface TransactionSettingProps { setSlippageTol: Function; customAddress: string; setCustomAddress: Function; } export default function TransactionSetting({ setSlippageTol, customAddress, setCustomAddress }: TransactionSettingProps): React.JSX.Element; export {};