import type { StringLike } from "@ariakit/core/form/types"; import type { ElementType } from "react"; import type { CollectionItemOptions } from "../collection/collection-item.tsx"; import type { Props } from "../utils/types.ts"; import type { FormStore } from "./form-store.ts"; declare const TagName = "div"; type TagName = typeof TagName; /** * Returns props to create a `FormDescription` component. * @see https://ariakit.com/components/form * @example * ```jsx * const store = useFormStore({ defaultValues: { email: "" } }); * const props = useFormError({ store, name: store.names.email }); * * store.useValidate(() => { * if (!store.getValue(store.names.email)) { * store.setError(store.names.email, "Email is required!"); * } * }); * *
* ``` */ export declare const useFormError: import("../utils/types.ts").Hook<"div", FormErrorOptions<"div">>; /** * Renders an element that shows an error message. The `children` will * automatically display the error message defined in the store. * @see https://ariakit.com/components/form * @example * ```jsx {16} * const form = useFormStore({ * defaultValues: { * email: "", * }, * }); * * form.useValidate(() => { * if (!form.values.email) { * form.setError(form.names.email, "Email is required!"); * } * }); * * * ``` */ export declare const FormError: (props: FormErrorProps) => import("react").ReactElement