12 lines
511 B
TypeScript
12 lines
511 B
TypeScript
export interface CalendarPickerSkeletonClasses {
|
|
/** Styles applied to the root element. */
|
|
root: string;
|
|
/** Styles applied to the week element. */
|
|
week: string;
|
|
/** Styles applied to the day element. */
|
|
daySkeleton: string;
|
|
}
|
|
export declare type CalendarPickerSkeletonClassKey = keyof CalendarPickerSkeletonClasses;
|
|
export declare const getCalendarPickerSkeletonUtilityClass: (slot: string) => string;
|
|
export declare const calendarPickerSkeletonClasses: CalendarPickerSkeletonClasses;
|