interface ICalendar {
    /**
     * The system or method used to organize and measure time.
     * Support as calendar value in Intl.DateTimeFormat...
     */
    calendar: string;
    /**
     * Unique code representing the calendar.
     */
    code: string;
    /**
     * Human-readable name of the calendar.
     */
    title: string;
    description: string;
    /**
     * Display format for both date and time in the calendar.
     * Suitable for presenting full date-time details.
     */
    displayFormat: string;
    /**
     * Display format for date only in the calendar.
     * Excludes time details.
     */
    displayFormatDateOnly: string;
    /**
     * Represents the first day of the week.
     */
    first_day_of_week: number;
    /**
     * Default Local.
     */
    default_local: string;
}
/**
 * Calendar configurations containing details of various calendar types.
 */ export declare const Calendar: Record<string, ICalendar>;
export {};
