Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

8 lines
312 B
TypeScript

export declare function getMonthPickerUtilityClass(slot: string): string;
export interface MonthPickerClasses {
/** Styles applied to the root element. */
root: string;
}
export declare type MonthPickerClassKey = keyof MonthPickerClasses;
export declare const monthPickerClasses: Record<"root", string>;