export declare class ReportLaunchingCircuitBreaker {
    static setMaxLaunch(value: number): void;
    static get currentCount(): number;
    static notifyLaunched(): void;
    static isLimitExceeded(): boolean;
    static check(approved: string, received: string, options: any): boolean;
}
export default ReportLaunchingCircuitBreaker;
