import { BaseFormControlProps } from './use-form-control.type'; export default function useFormControl(props: BaseFormControlProps): { value: T | undefined; onChange: (v: T, ...other: any[]) => void; error: Error | undefined; inForm: boolean; disabled: boolean | undefined; name: string | (string[] & string); }; //# sourceMappingURL=use-form-control.d.ts.map