export declare abstract class SchedulerEngine { abstract add(job: JobType): void; abstract stop(): void; }