import { Err, Valid } from './result'; import { Options } from './types'; export interface CronData { seconds?: string; minutes: string; hours: string; daysOfMonth: string; months: string; daysOfWeek: string; years?: string; } export declare type CronFieldType = 'seconds' | 'minutes' | 'hours' | 'daysOfMonth' | 'months' | 'daysOfWeek' | 'years'; declare const cron: (cronString: string) => Err | Valid; export default cron;