import { type ContractRunner } from "ethers";
import type { IZKVerifier, IZKVerifierInterface } from "../../../src/interfaces/IZKVerifier";
export declare class IZKVerifier__factory {
    static readonly abi: readonly [{
        readonly inputs: readonly [];
        readonly name: "provingKeyHash";
        readonly outputs: readonly [{
            readonly internalType: "bytes32";
            readonly name: "";
            readonly type: "bytes32";
        }];
        readonly stateMutability: "pure";
        readonly type: "function";
    }, {
        readonly inputs: readonly [{
            readonly internalType: "bytes";
            readonly name: "proof";
            readonly type: "bytes";
        }, {
            readonly internalType: "bytes";
            readonly name: "input";
            readonly type: "bytes";
        }];
        readonly name: "verifyProof";
        readonly outputs: readonly [];
        readonly stateMutability: "view";
        readonly type: "function";
    }];
    static createInterface(): IZKVerifierInterface;
    static connect(address: string, runner?: ContractRunner | null): IZKVerifier;
}
