import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { IQHolderRewardPool, IQHolderRewardPoolInterface } from "../IQHolderRewardPool";
export declare class IQHolderRewardPool__factory {
    static readonly abi: readonly [{
        readonly inputs: readonly [{
            readonly internalType: "uint256";
            readonly name: "_amount";
            readonly type: "uint256";
        }];
        readonly name: "requestRewardTransfer";
        readonly outputs: readonly [{
            readonly internalType: "uint256";
            readonly name: "";
            readonly type: "uint256";
        }];
        readonly stateMutability: "nonpayable";
        readonly type: "function";
    }];
    static createInterface(): IQHolderRewardPoolInterface;
    static connect(address: string, signerOrProvider: Signer | Provider): IQHolderRewardPool;
}
