import { IScheduleDef } from './IScheduleDef'; export declare class Schedule { options: IScheduleDef; name: string; timer: any; last: Date; next: Date; enable: boolean; reschedule: Function; execute: Function; lastResults: any; constructor(o: IScheduleDef); doReschedule(): void; runSchedule(): Promise; shutdown(): void; }