export interface DateRangePickerDay2Classes { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element if `outsideCurrentMonth=true` and `showDaysOutsideCurrentMonth=true`. */ dayOutsideMonth: string; /** Styles applied to the root element if `outsideCurrentMonth=true` and `showDaysOutsideCurrentMonth=false`. */ fillerCell: string; /** Styles applied to the root element if `disableHighlightToday=false` and `today=true`. */ today: string; /** State class applied to the root element if `disabled=true`. */ disabled: string; /** State class applied to the root element if `selected=true`. */ selected: string; previewStart: string; previewEnd: string; insidePreviewing: string; selectionStart: string; selectionEnd: string; insideSelection: string; startOfWeek: string; endOfWeek: string; startOfMonth: string; endOfMonth: string; previewed: string; draggable: string; } export type DateRangePickerDay2ClassKey = keyof DateRangePickerDay2Classes; export declare function getDateRangePickerDay2UtilityClass(slot: string): string; export declare const dateRangePickerDay2Classes: Record;