import type { FormFieldProps } from "../FormFieldTypes"; interface useAtlantisReactHookFormProps extends Pick { name: string; } /** * Hook used to manage the form state of a field through react-hook-form */ export declare function useAtlantisReactHookForm({ actionsRef, name, defaultValue, value, validations, inputRef, }: useAtlantisReactHookFormProps): { inputRefs: import("react").RefCallback; useControllerField: { value: any; disabled?: boolean; name: string; }; setValue: import("react-hook-form").UseFormSetValue; errorMessage: string; onControllerChange: (...event: any[]) => void; onControllerBlur: import("react-hook-form").Noop; }; export {};