export interface FormControlClasses { /** Class name applied to the root element. */ root: string; /** State class applied to the root element if `error={true}`. */ error: string; /** Class name applied to the root element if `disabled={true}`. */ disabled: string; /** Class name applied to the root element if `fullWidth={true}`. */ fullWidth: string; /** Class name applied to the root element if `size="small"`. */ sizeSmall: string; /** Class name applied to the root element if `size="medium"`. */ sizeMedium: string; /** Class name applied to the root element if `size="large"`. */ sizeLarge: string; } export type FormControlClassKey = keyof FormControlClasses; export declare function getFormControlUtilityClass(slot: string): string; declare const formControlClasses: FormControlClasses; export default formControlClasses;