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

15 lines
No EOL
682 B
TypeScript

export interface PickersTextFieldClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if focused. */
focused: string;
/** State class applied to the root element if `disabled=true`. */
disabled: string;
/** State class applied to the root element if `error=true`. */
error: string;
/** State class applied to the root element id `required=true` */
required: string;
}
export type PickersTextFieldClassKey = keyof PickersTextFieldClasses;
export declare function getPickersTextFieldUtilityClass(slot: string): string;
export declare const pickersTextFieldClasses: Record<keyof PickersTextFieldClasses, string>;