import React from 'react'; export type IFormControlContext = Omit, 'htmlProps'>; export declare const FormControlContext: React.Context<{}>; export declare function useFormControlProvider(props: any): { isRequired: boolean; isInvalid: boolean; isReadOnly: boolean; isDisabled: boolean; hasFeedbackText: boolean; setHasFeedbackText: React.Dispatch>; hasHelpText: boolean; setHasHelpText: React.Dispatch>; id: any; labelId: string; feedbackId: string; helpTextId: string; htmlProps: any; }; export declare function useFormControl(props: any): any; export declare const useFormControlContext: () => IFormControlContext; //# sourceMappingURL=useFormControl.d.ts.map