export interface DatePickerDayClasses { /** Class name applied to the root element */ root: string; /** Class name applied to the root element when selected */ selected: string; /** Class name applied to the root element when disabled */ disabled: string; /** Class name applied to the root element when it's today */ today: string; /** Class name applied to the root element when it's outside the current month */ outsideCurrentMonth: string; /** Class name applied to the root element when it has no margin */ noMargin: string; } export type DatePickerDayClassKey = keyof DatePickerDayClasses; /** * Generates a utility class for the DatePickerDay component * @param {string} slot - The class slot name * @returns {string} The generated class name */ export declare function getDatePickerDayUtilityClass(slot: string): string; /** * Generated utility classes for the DatePickerDay component */ export declare const datePickerDayClasses: DatePickerDayClasses;