import { Signer } from "ethers";
import { Provider } from "@ethersproject/providers";
import type { BasicRewardController } from "./BasicRewardController";
export declare class BasicRewardControllerFactory {
    static connect(address: string, signerOrProvider: Signer | Provider): BasicRewardController;
}
