@mui/x-date-pickers
Version:
The community edition of the MUI X Date and Time Picker components.
11 lines • 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" | "content" | "title", string>;