import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { IERC20TransferProxy, IERC20TransferProxyInterface } from "../IERC20TransferProxy"; export declare class IERC20TransferProxy__factory { static readonly abi: readonly [{ readonly inputs: readonly [{ readonly internalType: "contract IERC20Upgradeable"; readonly name: "token"; readonly type: "address"; }, { readonly internalType: "address"; readonly name: "from"; readonly type: "address"; }, { readonly internalType: "address"; readonly name: "to"; readonly type: "address"; }, { readonly internalType: "uint256"; readonly name: "value"; readonly type: "uint256"; }]; readonly name: "erc20safeTransferFrom"; readonly outputs: readonly []; readonly stateMutability: "nonpayable"; readonly type: "function"; }]; static createInterface(): IERC20TransferProxyInterface; static connect(address: string, signerOrProvider: Signer | Provider): IERC20TransferProxy; }