import { Currency, CurrencyAmount } from '@wicchain/sdk'; import { GasCost } from './gasCost'; import { RouteWithoutGasEstimate } from './route'; export type L1ToL2GasCosts = { gasUsedL1: bigint; gasCostL1USD: CurrencyAmount; gasCostL1QuoteToken: CurrencyAmount; }; export interface GasEstimateRequiredInfo { initializedTickCrossedList: number[]; } export interface GasModel { estimateGasCost: (route: RouteWithoutGasEstimate, info: GasEstimateRequiredInfo) => GasCost; } //# sourceMappingURL=gasModel.d.ts.map