import { type ContractRunner } from "ethers"; import type { IUniswapV2DynamicPriceRouter, IUniswapV2DynamicPriceRouterInterface } from "../../router/IUniswapV2DynamicPriceRouter"; export declare class IUniswapV2DynamicPriceRouter__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: "uint256"; readonly name: "amountIn"; readonly type: "uint256"; }, { readonly internalType: "address[]"; readonly name: "path"; readonly type: "address[]"; }]; readonly name: "getPrice"; readonly outputs: readonly [{ readonly internalType: "uint256"; readonly name: ""; readonly type: "uint256"; }]; readonly stateMutability: "view"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "uint256"; readonly name: "amountIn"; readonly type: "uint256"; }, { readonly internalType: "address[]"; readonly name: "path"; readonly type: "address[]"; }]; readonly name: "getPriceFeesRemoved"; readonly outputs: readonly [{ readonly internalType: "uint256"; readonly name: ""; readonly type: "uint256"; }]; readonly stateMutability: "view"; readonly type: "function"; }]; static createInterface(): IUniswapV2DynamicPriceRouterInterface; static connect(address: string, runner?: ContractRunner | null): IUniswapV2DynamicPriceRouter; }