import { IAutomationSchedule } from "./automation.js"; export declare const DAYS_OF_WEEK: readonly string[]; /** * Computes the next fire time for a schedule. Daily/weekly times are * local wall-clock (not UTC) so DST transitions don't shift them. * Day advances use `Date` constructor overflow, not milliseconds, to * avoid skipping spring-forward days. Returns `undefined` for `manual`. */ export declare function computeNextRunAt(schedule: IAutomationSchedule, now: Date): Date | undefined;