import { EventService } from "./EventService";
export declare class TutorialInterceptor {
    private eventService;
    private reqsTotal;
    private reqsCompleted;
    private countingBulk;
    private webAPIUrlConfiguration;
    readyState: boolean;
    constructor(eventService: EventService);
    handleRequest: (url: string) => void;
    handleResponse: (url: string) => void;
    handleResponseError: (url: string) => void;
    private canCount;
    private setComplete;
    publishChange: (change: boolean) => void;
}
