import { CalendarService } from "./../services/calendar.service"; import { SuiLocalizationService } from "../../../behaviors/localization/index"; export declare type DatepickerMode = "year" | "month" | "date" | "datetime" | "time"; export declare const DatepickerMode: { Year: "time" | "year" | "month" | "date" | "datetime"; Month: "time" | "year" | "month" | "date" | "datetime"; Date: "time" | "year" | "month" | "date" | "datetime"; Datetime: "time" | "year" | "month" | "date" | "datetime"; Time: "time" | "year" | "month" | "date" | "datetime"; }; export declare class SuiDatepicker { private _calendarClasses; service: CalendarService; constructor(localizationService: SuiLocalizationService); onMouseDown(e: MouseEvent): void; }