import type { JobDef } from './types.js';
export default class Schedule {
    cron?: string;
    tz?: string;
    constructor(job: JobDef);
    shouldRun(start: Date, end: Date): boolean;
}
