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<string>,
        PromiseOrValue<BytesLike>,
        PromiseOrValue<BytesLike>,
        PromiseOrValue<BigNumberish>,
        PromiseOrValue<BytesLike>
    ]): 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<MovedPartitionEvent>;
export interface ITransferablePartition extends BaseContract {
    connect(signerOrProvider: Signer | Provider | string): this;
    attach(addressOrName: string): this;
    deployed(): Promise<this>;
    interface: ITransferablePartitionInterface;
    queryFilter<TEvent extends TypedEvent>(event: TypedEventFilter<TEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TEvent>>;
    listeners<TEvent extends TypedEvent>(eventFilter?: TypedEventFilter<TEvent>): Array<TypedListener<TEvent>>;
    listeners(eventName?: string): Array<Listener>;
    removeAllListeners<TEvent extends TypedEvent>(eventFilter: TypedEventFilter<TEvent>): this;
    removeAllListeners(eventName?: string): this;
    off: OnEvent<this>;
    on: OnEvent<this>;
    once: OnEvent<this>;
    removeListener: OnEvent<this>;
    functions: {
        transferPartition(account: PromiseOrValue<string>, fromId: PromiseOrValue<BytesLike>, toId: PromiseOrValue<BytesLike>, amount: PromiseOrValue<BigNumberish>, data: PromiseOrValue<BytesLike>, overrides?: Overrides & {
            from?: PromiseOrValue<string>;
        }): Promise<ContractTransaction>;
    };
    transferPartition(account: PromiseOrValue<string>, fromId: PromiseOrValue<BytesLike>, toId: PromiseOrValue<BytesLike>, amount: PromiseOrValue<BigNumberish>, data: PromiseOrValue<BytesLike>, overrides?: Overrides & {
        from?: PromiseOrValue<string>;
    }): Promise<ContractTransaction>;
    callStatic: {
        transferPartition(account: PromiseOrValue<string>, fromId: PromiseOrValue<BytesLike>, toId: PromiseOrValue<BytesLike>, amount: PromiseOrValue<BigNumberish>, data: PromiseOrValue<BytesLike>, overrides?: CallOverrides): Promise<boolean>;
    };
    filters: {
        "MovedPartition(address,bytes32,bytes32,uint256,bytes)"(account?: PromiseOrValue<string> | null, fromId?: null, toId?: null, value?: null, data?: null): MovedPartitionEventFilter;
        MovedPartition(account?: PromiseOrValue<string> | null, fromId?: null, toId?: null, value?: null, data?: null): MovedPartitionEventFilter;
    };
    estimateGas: {
        transferPartition(account: PromiseOrValue<string>, fromId: PromiseOrValue<BytesLike>, toId: PromiseOrValue<BytesLike>, amount: PromiseOrValue<BigNumberish>, data: PromiseOrValue<BytesLike>, overrides?: Overrides & {
            from?: PromiseOrValue<string>;
        }): Promise<BigNumber>;
    };
    populateTransaction: {
        transferPartition(account: PromiseOrValue<string>, fromId: PromiseOrValue<BytesLike>, toId: PromiseOrValue<BytesLike>, amount: PromiseOrValue<BigNumberish>, data: PromiseOrValue<BytesLike>, overrides?: Overrides & {
            from?: PromiseOrValue<string>;
        }): Promise<PopulatedTransaction>;
    };
}
//# sourceMappingURL=ITransferablePartition.d.ts.map