export declare const week: string[]; export declare const months: string[]; export declare const isMinOverlap: (minDate: Date, date: Date) => boolean; export declare const isMaxOverlap: (maxDate: Date, date: Date) => boolean; export declare const isSameDay: (dateLeft: Date, dateRight: Date) => boolean; export declare const genYears: (min: Date, max: Date) => number[]; export declare const genWeek: (week: Date, month: Date, count: number) => Date[]; export declare const genMonth: (date: Date) => Date[][]; export declare const validInput: (term: string) => boolean; export declare const parseDate: (date: string) => Date; export declare const dayLimit: (month: number, year: number) => number; export declare const excludedMonths: (day: number, year: number) => number[]; export declare const setMonth: (month: number, year: number) => Date;