import { type ContractRunner } from "ethers"; import type { IUniswapV3DynamicPriceRouter, IUniswapV3DynamicPriceRouterInterface } from "../../router/IUniswapV3DynamicPriceRouter"; export declare class IUniswapV3DynamicPriceRouter__factory { static readonly abi: readonly [{ readonly inputs: readonly []; readonly name: "ROUTER_NAME"; readonly outputs: readonly [{ readonly internalType: "string"; readonly name: ""; readonly type: "string"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "enum IUniswapV3DynamicPriceRouter.Fee"; readonly name: "fee"; readonly type: "uint8"; }]; readonly name: "getFee"; readonly outputs: readonly [{ readonly internalType: "uint256"; readonly name: ""; readonly type: "uint256"; }]; readonly stateMutability: "pure"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "uint256"; readonly name: "amountIn"; readonly type: "uint256"; }, { readonly internalType: "bytes"; readonly name: "path"; readonly type: "bytes"; }]; readonly name: "getPrice"; readonly outputs: readonly [{ readonly internalType: "uint256"; readonly name: ""; readonly type: "uint256"; }]; readonly stateMutability: "nonpayable"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "uint256"; readonly name: "amountIn"; readonly type: "uint256"; }, { readonly internalType: "bytes"; readonly name: "path"; readonly type: "bytes"; }, { readonly internalType: "enum IUniswapV3DynamicPriceRouter.Fee[]"; readonly name: "fees"; readonly type: "uint8[]"; }]; readonly name: "getPriceFeesRemoved"; readonly outputs: readonly [{ readonly internalType: "uint256"; readonly name: ""; readonly type: "uint256"; }]; readonly stateMutability: "nonpayable"; readonly type: "function"; }]; static createInterface(): IUniswapV3DynamicPriceRouterInterface; static connect(address: string, runner?: ContractRunner | null): IUniswapV3DynamicPriceRouter; }