import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { IVetoMemberStorage, IVetoMemberStorageInterface } from "../IVetoMemberStorage";
export declare class IVetoMemberStorage__factory {
    static readonly abi: readonly [{
        readonly inputs: readonly [];
        readonly name: "getGroup";
        readonly outputs: readonly [{
            readonly internalType: "string[]";
            readonly name: "";
            readonly type: "string[]";
        }];
        readonly stateMutability: "view";
        readonly type: "function";
    }, {
        readonly inputs: readonly [];
        readonly name: "getMembers";
        readonly outputs: readonly [{
            readonly internalType: "address[]";
            readonly name: "";
            readonly type: "address[]";
        }];
        readonly stateMutability: "view";
        readonly type: "function";
    }, {
        readonly inputs: readonly [];
        readonly name: "getMembersCount";
        readonly outputs: readonly [{
            readonly internalType: "uint256";
            readonly name: "";
            readonly type: "uint256";
        }];
        readonly stateMutability: "view";
        readonly type: "function";
    }];
    static createInterface(): IVetoMemberStorageInterface;
    static connect(address: string, signerOrProvider: Signer | Provider): IVetoMemberStorage;
}
