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