export interface ModalDateRangePickerClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element when disabled. */ disabled: string; /** Styles applied to the dialog element. */ dialog: string; /** Styles applied to the content element. */ content: string; /** Styles applied to the field element. */ field: string; /** Styles applied to the calendar element. */ calendar: string; /** Styles applied to the footer element. */ footer: string; /** Styles applied to the header element. */ header: string; } export type ModalDateRangePickerClassKey = keyof ModalDateRangePickerClasses; export declare function getModalDateRangePickerUtilityClass(slot: string): string; export declare const modalDateRangePickerClasses: ModalDateRangePickerClasses;