UNPKG

483 BTypeScriptView Raw
1export interface FormGroupClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element if `row={true}`. */
5 row: string;
6 /** State class applied to the root element if `error={true}`. */
7 error: string;
8}
9export type FormGroupClassKey = keyof FormGroupClasses;
10export declare function getFormGroupUtilityClass(slot: string): string;
11declare const formGroupClasses: FormGroupClasses;
12export default formGroupClasses;