import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../common"; export declare namespace ICustomUniswapV4Router { type PathKeyStruct = { intermediateCurrency: AddressLike; fee: BigNumberish; tickSpacing: BigNumberish; hooks: AddressLike; hookData: BytesLike; }; type PathKeyStructOutput = [ intermediateCurrency: string, fee: bigint, tickSpacing: bigint, hooks: string, hookData: string ] & { intermediateCurrency: string; fee: bigint; tickSpacing: bigint; hooks: string; hookData: string; }; type QuoteExactParamsStruct = { exactCurrency: AddressLike; path: ICustomUniswapV4Router.PathKeyStruct[]; exactAmount: BigNumberish; }; type QuoteExactParamsStructOutput = [ exactCurrency: string, path: ICustomUniswapV4Router.PathKeyStructOutput[], exactAmount: bigint ] & { exactCurrency: string; path: ICustomUniswapV4Router.PathKeyStructOutput[]; exactAmount: bigint; }; } export interface ICustomUniswapV4RouterInterface extends Interface { getFunction(nameOrSignature: "quoteExactInput"): FunctionFragment; encodeFunctionData(functionFragment: "quoteExactInput", values: [ICustomUniswapV4Router.QuoteExactParamsStruct]): string; decodeFunctionResult(functionFragment: "quoteExactInput", data: BytesLike): Result; } export interface ICustomUniswapV4Router extends BaseContract { connect(runner?: ContractRunner | null): ICustomUniswapV4Router; waitForDeployment(): Promise; interface: ICustomUniswapV4RouterInterface; queryFilter(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>>; queryFilter(filter: TypedDeferredTopicFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>>; on(event: TCEvent, listener: TypedListener): Promise; on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise; once(event: TCEvent, listener: TypedListener): Promise; once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise; listeners(event: TCEvent): Promise>>; listeners(eventName?: string): Promise>; removeAllListeners(event?: TCEvent): Promise; quoteExactInput: TypedContractMethod<[ params: ICustomUniswapV4Router.QuoteExactParamsStruct ], [ [bigint, bigint] & { amountOut: bigint; gasEstimate: bigint; } ], "nonpayable">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "quoteExactInput"): TypedContractMethod<[ params: ICustomUniswapV4Router.QuoteExactParamsStruct ], [ [bigint, bigint] & { amountOut: bigint; gasEstimate: bigint; } ], "nonpayable">; filters: {}; }