/** Possible types for datetimepicker. */ export declare type MtxDatetimepickerType = 'date' | 'time' | 'month' | 'year' | 'datetime'; /** i18nLabels used for datetimepicker with manual time input */ export declare type MtxTimeI18nLabels = { confirmButtonLabel: string; cancelButtonLabel: string; }; /** Possible views for datetimepicker calendar. */ export declare type MtxCalendarView = 'clock' | 'month' | 'year' | 'multi-year'; /** Type for AM / PM */ export declare type MtxAmPM = 'AM' | 'PM';