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 IUniswapV4DynamicPriceRouterInterface extends Interface { getFunction(nameOrSignature: "FEE_DENOMINATOR" | "ROUTER_NAME" | "getPrice" | "getPriceFeesRemoved"): FunctionFragment; encodeFunctionData(functionFragment: "FEE_DENOMINATOR", values?: undefined): string; encodeFunctionData(functionFragment: "ROUTER_NAME", values?: undefined): string; encodeFunctionData(functionFragment: "getPrice", values: [ICustomUniswapV4Router.QuoteExactParamsStruct]): string; encodeFunctionData(functionFragment: "getPriceFeesRemoved", values: [ICustomUniswapV4Router.QuoteExactParamsStruct]): string; decodeFunctionResult(functionFragment: "FEE_DENOMINATOR", data: BytesLike): Result; decodeFunctionResult(functionFragment: "ROUTER_NAME", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getPrice", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getPriceFeesRemoved", data: BytesLike): Result; } export interface IUniswapV4DynamicPriceRouter extends BaseContract { connect(runner?: ContractRunner | null): IUniswapV4DynamicPriceRouter; waitForDeployment(): Promise; interface: IUniswapV4DynamicPriceRouterInterface; 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; FEE_DENOMINATOR: TypedContractMethod<[], [bigint], "view">; ROUTER_NAME: TypedContractMethod<[], [string], "view">; getPrice: TypedContractMethod<[ params: ICustomUniswapV4Router.QuoteExactParamsStruct ], [ bigint ], "nonpayable">; getPriceFeesRemoved: TypedContractMethod<[ params: ICustomUniswapV4Router.QuoteExactParamsStruct ], [ bigint ], "nonpayable">; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: "FEE_DENOMINATOR"): TypedContractMethod<[], [bigint], "view">; getFunction(nameOrSignature: "ROUTER_NAME"): TypedContractMethod<[], [string], "view">; getFunction(nameOrSignature: "getPrice"): TypedContractMethod<[ params: ICustomUniswapV4Router.QuoteExactParamsStruct ], [ bigint ], "nonpayable">; getFunction(nameOrSignature: "getPriceFeesRemoved"): TypedContractMethod<[ params: ICustomUniswapV4Router.QuoteExactParamsStruct ], [ bigint ], "nonpayable">; filters: {}; }