import type { CalendarDate, CalendarDateParts, DayOfMonth, Month } from './types.js'; export declare function createCalendarDate(year: number, month: Month, day: DayOfMonth): CalendarDate; export declare function createCalendarDateFromDateString(value: string): CalendarDate; export declare function calendarDateToLocalDate(calendarDate: CalendarDate): Date; export declare function parseCalendarDate(calendarDate: string): CalendarDateParts; export declare function toUtcMidnight(calendarDate: CalendarDate): Date; export declare function today(timeZone?: string): CalendarDate; export declare function toCalendarDate(date: Date, timeZone?: string): CalendarDate; export declare function isValidCalendarDate(calendarDate: string): calendarDate is CalendarDate;