UNPKG

608 BTypeScriptView Raw
1export interface FormControlClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element if `margin="normal"`. */
5 marginNormal: string;
6 /** Styles applied to the root element if `margin="dense"`. */
7 marginDense: string;
8 /** Styles applied to the root element if `fullWidth={true}`. */
9 fullWidth: string;
10}
11export type FormControlClassKey = keyof FormControlClasses;
12export declare function getFormControlUtilityClasses(slot: string): string;
13declare const formControlClasses: FormControlClasses;
14export default formControlClasses;