/// export interface UseFormControlProps { id?: string; required?: boolean; label?: React.ReactNode; error?: React.ReactNode; inline?: boolean; } export declare function useFormControl(props: UseFormControlProps): { getFormControlProps: () => { label: import("react").ReactNode; error: import("react").ReactNode; htmlFor: string; labelId: string; errorId: string; required: boolean; inline: boolean; }; getInputProps: () => { 'aria-labelledby': string; 'aria-invalid': boolean; 'aria-errormessage': string; }; };