import { ParsedCron } from './parse'; /** * generate the next occurrence AFTER the "from" date value * returns NULL when there is no more future occurrence * @param {*} parsed the value returned by "parse" function of this module * @param {*} from the Date to start from */ export declare function next(parsed: ParsedCron, from: Date): Date | null;