/** * Calculates the next time a cron expression should run. * * Expects: a valid cron expression string and optional start date. * Returns: the next matching Date, or null if invalid/no match within 2 years. */ export declare function cronTimeGetNext(expression: string, from?: Date): Date | null; //# sourceMappingURL=cronTimeGetNext.d.ts.map