import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { IRootToken, IRootTokenInterface } from "../IRootToken";
export declare class IRootToken__factory {
    static readonly abi: readonly [{
        readonly type: "function";
        readonly name: "publicMint";
        readonly inputs: readonly [{
            readonly name: "user";
            readonly type: "address";
            readonly internalType: "address";
        }, {
            readonly name: "amount";
            readonly type: "uint256";
            readonly internalType: "uint256";
        }];
        readonly outputs: readonly [];
        readonly stateMutability: "nonpayable";
    }];
    static createInterface(): IRootTokenInterface;
    static connect(address: string, signerOrProvider: Signer | Provider): IRootToken;
}
