import type { WeekNumberType } from '../nodemod/src/calendar/typings.js'; import type { CustomEventAction, LitConstructor, StartView } from '../typings.js'; import type { Constructor } from '../utility-typings.js'; export interface DatePickerMinMaxProperties { max?: string; min?: string; } export interface DatePickerMixinProperties { chooseMonthLabel: string; chooseYearLabel: string; disabledDates: string; disabledDays: string; firstDayOfWeek: number; locale: string; nextMonthLabel: string; previousMonthLabel: string; selectedDateLabel: string; selectedYearLabel: string; shortWeekLabel: string; showWeekNumber: boolean; startView: StartView; todayLabel: string; toyearLabel: string; value?: string | null; weekLabel: string; weekNumberTemplate: string; weekNumberType: WeekNumberType; } export interface ElementMixinProperties { fire>(action: T): void; query(selector: string): T | null; queryAll(selector: string): T[]; root: ShadowRoot; } export type MixinReturnType = BaseConstructor & Constructor; //# sourceMappingURL=typings.d.ts.map