import type { BaseContract, BigNumber, BigNumberish, BytesLike, CallOverrides, PopulatedTransaction, Signer, utils } from "ethers"; import type { FunctionFragment, Result } from "@ethersproject/abi"; import type { Listener, Provider } from "@ethersproject/providers"; import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue } from "../../../common"; export interface IERC20GuardPartitionInterface extends utils.Interface { functions: { "canTransferFrom(address,address,bytes32,bytes32,uint256)": FunctionFragment; "canTransferFrom(address,address,uint256)": FunctionFragment; }; getFunction(nameOrSignatureOrTopic: "canTransferFrom(address,address,bytes32,bytes32,uint256)" | "canTransferFrom(address,address,uint256)"): FunctionFragment; encodeFunctionData(functionFragment: "canTransferFrom(address,address,bytes32,bytes32,uint256)", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue ]): string; encodeFunctionData(functionFragment: "canTransferFrom(address,address,uint256)", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue ]): string; decodeFunctionResult(functionFragment: "canTransferFrom(address,address,bytes32,bytes32,uint256)", data: BytesLike): Result; decodeFunctionResult(functionFragment: "canTransferFrom(address,address,uint256)", data: BytesLike): Result; events: {}; } export interface IERC20GuardPartition extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: IERC20GuardPartitionInterface; queryFilter(event: TypedEventFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>; listeners(eventFilter?: TypedEventFilter): Array>; listeners(eventName?: string): Array; removeAllListeners(eventFilter: TypedEventFilter): this; removeAllListeners(eventName?: string): this; off: OnEvent; on: OnEvent; once: OnEvent; removeListener: OnEvent; functions: { "canTransferFrom(address,address,bytes32,bytes32,uint256)"(from: PromiseOrValue, to: PromiseOrValue, fromId: PromiseOrValue, toId: PromiseOrValue, amount: PromiseOrValue, overrides?: CallOverrides): Promise<[boolean]>; "canTransferFrom(address,address,uint256)"(from: PromiseOrValue, to: PromiseOrValue, amount: PromiseOrValue, overrides?: CallOverrides): Promise<[boolean]>; }; "canTransferFrom(address,address,bytes32,bytes32,uint256)"(from: PromiseOrValue, to: PromiseOrValue, fromId: PromiseOrValue, toId: PromiseOrValue, amount: PromiseOrValue, overrides?: CallOverrides): Promise; "canTransferFrom(address,address,uint256)"(from: PromiseOrValue, to: PromiseOrValue, amount: PromiseOrValue, overrides?: CallOverrides): Promise; callStatic: { "canTransferFrom(address,address,bytes32,bytes32,uint256)"(from: PromiseOrValue, to: PromiseOrValue, fromId: PromiseOrValue, toId: PromiseOrValue, amount: PromiseOrValue, overrides?: CallOverrides): Promise; "canTransferFrom(address,address,uint256)"(from: PromiseOrValue, to: PromiseOrValue, amount: PromiseOrValue, overrides?: CallOverrides): Promise; }; filters: {}; estimateGas: { "canTransferFrom(address,address,bytes32,bytes32,uint256)"(from: PromiseOrValue, to: PromiseOrValue, fromId: PromiseOrValue, toId: PromiseOrValue, amount: PromiseOrValue, overrides?: CallOverrides): Promise; "canTransferFrom(address,address,uint256)"(from: PromiseOrValue, to: PromiseOrValue, amount: PromiseOrValue, overrides?: CallOverrides): Promise; }; populateTransaction: { "canTransferFrom(address,address,bytes32,bytes32,uint256)"(from: PromiseOrValue, to: PromiseOrValue, fromId: PromiseOrValue, toId: PromiseOrValue, amount: PromiseOrValue, overrides?: CallOverrides): Promise; "canTransferFrom(address,address,uint256)"(from: PromiseOrValue, to: PromiseOrValue, amount: PromiseOrValue, overrides?: CallOverrides): Promise; }; } //# sourceMappingURL=IERC20GuardPartition.d.ts.map