import { UseFlowerForm } from '../types/FlowerHooks'; /** This hook allows you to manage and retrieve information about Forms. * * It exposes details regarding the form's state and a set of methods for reading and writing within it: * * - isSubmitted, * - isDirty, * - errors, * - customErrors, * - isValid, * - isValidating, * - getData, * - setData, * - unsetData, * - replaceData, * - reset, * - setCustomErrors * - getFormStatus * * @param {string} customFormName - Pass this prop if useFlowerForm its used outside FlowerForm Context to choose which form you need * */ export declare const useFlowerForm: UseFlowerForm;