import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "./common";
export interface BN254SignatureSchemeInterface extends Interface {
    getFunction(nameOrSignature: "DST" | "SCHEME_ID" | "getChainId" | "hashToBytes" | "hashToPoint" | "verifySignature"): FunctionFragment;
    encodeFunctionData(functionFragment: "DST", values?: undefined): string;
    encodeFunctionData(functionFragment: "SCHEME_ID", values?: undefined): string;
    encodeFunctionData(functionFragment: "getChainId", values?: undefined): string;
    encodeFunctionData(functionFragment: "hashToBytes", values: [BytesLike]): string;
    encodeFunctionData(functionFragment: "hashToPoint", values: [BytesLike]): string;
    encodeFunctionData(functionFragment: "verifySignature", values: [BytesLike, BytesLike, BytesLike]): string;
    decodeFunctionResult(functionFragment: "DST", data: BytesLike): Result;
    decodeFunctionResult(functionFragment: "SCHEME_ID", data: BytesLike): Result;
    decodeFunctionResult(functionFragment: "getChainId", data: BytesLike): Result;
    decodeFunctionResult(functionFragment: "hashToBytes", data: BytesLike): Result;
    decodeFunctionResult(functionFragment: "hashToPoint", data: BytesLike): Result;
    decodeFunctionResult(functionFragment: "verifySignature", data: BytesLike): Result;
}
export interface BN254SignatureScheme extends BaseContract {
    connect(runner?: ContractRunner | null): BN254SignatureScheme;
    waitForDeployment(): Promise<this>;
    interface: BN254SignatureSchemeInterface;
    queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
    queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
    on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
    on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
    once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
    once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
    listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
    listeners(eventName?: string): Promise<Array<Listener>>;
    removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
    DST: TypedContractMethod<[], [string], "view">;
    SCHEME_ID: TypedContractMethod<[], [string], "view">;
    getChainId: TypedContractMethod<[], [bigint], "view">;
    hashToBytes: TypedContractMethod<[message: BytesLike], [string], "view">;
    hashToPoint: TypedContractMethod<[
        message: BytesLike
    ], [
        [bigint, bigint]
    ], "view">;
    verifySignature: TypedContractMethod<[
        message: BytesLike,
        signature: BytesLike,
        publicKey: BytesLike
    ], [
        boolean
    ], "view">;
    getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
    getFunction(nameOrSignature: "DST"): TypedContractMethod<[], [string], "view">;
    getFunction(nameOrSignature: "SCHEME_ID"): TypedContractMethod<[], [string], "view">;
    getFunction(nameOrSignature: "getChainId"): TypedContractMethod<[], [bigint], "view">;
    getFunction(nameOrSignature: "hashToBytes"): TypedContractMethod<[message: BytesLike], [string], "view">;
    getFunction(nameOrSignature: "hashToPoint"): TypedContractMethod<[message: BytesLike], [[bigint, bigint]], "view">;
    getFunction(nameOrSignature: "verifySignature"): TypedContractMethod<[
        message: BytesLike,
        signature: BytesLike,
        publicKey: BytesLike
    ], [
        boolean
    ], "view">;
    filters: {};
}
