import { CronValue, TimeType } from "../types"; interface TimeRulesInput extends CronValue { nextOccurrence: Date; } export declare const applyTimeRules: (timeType: TimeType, cronValue: TimeRulesInput) => void; export {};