/// <reference types="../../index.d.ts" />
import { PropertyValues } from 'lit';
import { PublicLitElement as LitElement, JsxNode, TargetedEvent } from '@arcgis/lumina';
import { DateLocaleData } from '../calcite-date-picker/utils';
import { HeadingLevel } from '../functional/Heading';
import { Position, Scale } from '../interfaces';
import { DatePicker } from '../calcite-date-picker/customElement.js';

export declare class DatePickerMonthHeader extends LitElement {
    /** The focused date is indicated and will become the selected date if the user proceeds. */
    activeDate: Date;
    /** Specifies the number at which section headings should start. */
    headingLevel: HeadingLevel;
    /** CLDR locale data for translated calendar info. */
    localeData: DateLocaleData;
    /** Specifies the latest allowed date (`"yyyy-mm-dd"`). */
    max: Date;
    /** Specifies the earliest allowed date (`"yyyy-mm-dd"`). */
    min: Date;
    /** Specifies the monthStyle used by the component. */
    monthStyle: "abbreviated" | "wide";
    /** Specifies the size of the component. */
    scale: Scale;
    /** Already selected date. */
    selectedDate: Date;
}
