import type { DayOfWeek, Month, LocalDate as LocalDateInterface } from '@enonic-types/lib-value'; export declare class LocalDate implements LocalDateInterface { private date; static months: Month[]; static daysOfWeek: DayOfWeek[]; constructor(value: string | Date); getYear(): number; getMonthValue(): number; getMonth(): Month; getDayOfMonth(): number; getDayOfWeek(): DayOfWeek; getDayOfYear(): number; isLeapYear(): boolean; }