import { CronJob } from 'cron'; declare const schedule: { add(expr: string, handler: () => void | Promise, options?: { timezone?: string; }): CronJob; remove(job: CronJob): void; }; type Schedule = typeof schedule; export { type Schedule, schedule };