import * as React from 'react'; interface FormControlContextValue { id?: string; isRequired?: boolean; isDisabled?: boolean; isInvalid?: boolean; isReadOnly?: boolean; } export declare const useFormControl: () => FormControlContextValue; export interface FormControlProps extends React.HTMLAttributes { /** Whether the form control is required */ isRequired?: boolean; /** Whether the form control is disabled */ isDisabled?: boolean; /** Whether the form control is invalid */ isInvalid?: boolean; /** Whether the form control is read-only */ isReadOnly?: boolean; /** ID to associate with form elements */ id?: string; } export declare const FormControl: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=FormControl.d.ts.map