import { Currency, CurrencyAmount } from "@uniswap/sdk-core"; import { Rate } from "../state/gorder/actions"; export default function useGasOverhead( inputAmount: CurrencyAmount | undefined, outputAmount: CurrencyAmount | undefined, rateType: Rate ): { realExecutionRate: string | undefined; gasPrice: number | undefined; };