import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { EIP712SuperGalaticFactory, EIP712SuperGalaticFactoryInterface } from "../EIP712SuperGalaticFactory";
export declare class EIP712SuperGalaticFactory__factory {
    static readonly abi: readonly [{
        readonly type: "function";
        readonly name: "backendSigner";
        readonly inputs: readonly [];
        readonly outputs: readonly [{
            readonly name: "";
            readonly type: "address";
            readonly internalType: "address";
        }];
        readonly stateMutability: "view";
    }, {
        readonly type: "function";
        readonly name: "concatSignature";
        readonly inputs: readonly [{
            readonly name: "v";
            readonly type: "uint8";
            readonly internalType: "uint8";
        }, {
            readonly name: "r";
            readonly type: "bytes32";
            readonly internalType: "bytes32";
        }, {
            readonly name: "s";
            readonly type: "bytes32";
            readonly internalType: "bytes32";
        }];
        readonly outputs: readonly [{
            readonly name: "";
            readonly type: "bytes";
            readonly internalType: "bytes";
        }];
        readonly stateMutability: "pure";
    }, {
        readonly type: "function";
        readonly name: "setBackendSigner";
        readonly inputs: readonly [{
            readonly name: "_bkSigner";
            readonly type: "address";
            readonly internalType: "address";
        }];
        readonly outputs: readonly [];
        readonly stateMutability: "nonpayable";
    }];
    static createInterface(): EIP712SuperGalaticFactoryInterface;
    static connect(address: string, signerOrProvider: Signer | Provider): EIP712SuperGalaticFactory;
}
