import type { BaseContract, BigNumber, BigNumberish, BytesLike, CallOverrides, ContractTransaction, Overrides, PopulatedTransaction, Signer, utils } from "ethers"; import type { FunctionFragment, Result, EventFragment } from "@ethersproject/abi"; import type { Listener, Provider } from "@ethersproject/providers"; import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue } from "../../../common"; export interface ITransferablePartitionInterface extends utils.Interface { functions: { "transferPartition(address,bytes32,bytes32,uint256,bytes)": FunctionFragment; }; getFunction(nameOrSignatureOrTopic: "transferPartition"): FunctionFragment; encodeFunctionData(functionFragment: "transferPartition", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue ]): string; decodeFunctionResult(functionFragment: "transferPartition", data: BytesLike): Result; events: { "MovedPartition(address,bytes32,bytes32,uint256,bytes)": EventFragment; }; getEvent(nameOrSignatureOrTopic: "MovedPartition"): EventFragment; } export interface MovedPartitionEventObject { account: string; fromId: string; toId: string; value: BigNumber; data: string; } export declare type MovedPartitionEvent = TypedEvent<[ string, string, string, BigNumber, string ], MovedPartitionEventObject>; export declare type MovedPartitionEventFilter = TypedEventFilter; export interface ITransferablePartition extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: ITransferablePartitionInterface; 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: { transferPartition(account: PromiseOrValue, fromId: PromiseOrValue, toId: PromiseOrValue, amount: PromiseOrValue, data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; }; transferPartition(account: PromiseOrValue, fromId: PromiseOrValue, toId: PromiseOrValue, amount: PromiseOrValue, data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; callStatic: { transferPartition(account: PromiseOrValue, fromId: PromiseOrValue, toId: PromiseOrValue, amount: PromiseOrValue, data: PromiseOrValue, overrides?: CallOverrides): Promise; }; filters: { "MovedPartition(address,bytes32,bytes32,uint256,bytes)"(account?: PromiseOrValue | null, fromId?: null, toId?: null, value?: null, data?: null): MovedPartitionEventFilter; MovedPartition(account?: PromiseOrValue | null, fromId?: null, toId?: null, value?: null, data?: null): MovedPartitionEventFilter; }; estimateGas: { transferPartition(account: PromiseOrValue, fromId: PromiseOrValue, toId: PromiseOrValue, amount: PromiseOrValue, data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; }; populateTransaction: { transferPartition(account: PromiseOrValue, fromId: PromiseOrValue, toId: PromiseOrValue, amount: PromiseOrValue, data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; }; } //# sourceMappingURL=ITransferablePartition.d.ts.map