1
0
Fork 0
react-playground/node_modules/@mui/x-date-pickers/internals/components/pickersToolbarClasses.d.ts
Techognito fc0f69dacb Added Statistics calculation
Statistics now show calculated values
2025-09-04 17:30:00 +02:00

11 lines
No EOL
466 B
TypeScript

export interface PickersToolbarClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the title element. */
title: string;
/** Styles applied to the content element. */
content: string;
}
export type PickersToolbarClassKey = keyof PickersToolbarClasses;
export declare function getPickersToolbarUtilityClass(slot: string): string;
export declare const pickersToolbarClasses: Record<"root" | "title" | "content", string>;