import { ClientReportMessage } from './protocol'; export declare class Schedular { #private; private userAgent; private tasks; constructor(userAgent: string, tasks: string[]); private reports; getTask(): string | null; report(data: ClientReportMessage): void; save(): Promise; }