import type { StringLike } from "@ariakit/core/form/types"; import type { ElementType } from "react"; import type { ButtonOptions } from "../button/button.tsx"; import type { Props } from "../utils/types.ts"; import type { FormStore } from "./form-store.ts"; declare const TagName = "button"; type TagName = typeof TagName; /** * Returns props to create a `FormRemove` component. * @see https://ariakit.com/components/form * @example * ```jsx * const store = useFormStore({ * defaultValues: { * languages: ["JavaScript", "PHP"], * }, * }); * const props = useFormRemove({ * store, * name: store.names.languages, * index: 0, * }); * const values = useStoreState(store, "values"); * *
* ``` */ export declare const useFormRemove: import("../utils/types.ts").Hook<"button", FormRemoveOptions<"button">>; /** * Renders a button that will remove an item from an array field in the form * when clicked. * * The [`name`](https://ariakit.com/reference/form-remove#name) prop must be * provided to identify the array field. Similarly, the * [`index`](https://ariakit.com/reference/form-remove#index) prop is required * to pinpoint the item to remove. * * By default, the button will automatically move focus to the next field in the * form when clicked, or to the previous field if there isn't a next field. This * behavior can be disabled by setting the * [`autoFocusOnClick`](https://ariakit.com/reference/form-remove#autofocusonclick) * prop to `false`. * @see https://ariakit.com/components/form * @example * ```jsx {13} * const form = useFormStore({ * defaultValues: { * languages: ["JavaScript", "PHP"], * }, * }); * * const values = useStoreState(form, "values"); * * * ``` */ export declare const FormRemove: (props: FormRemoveProps) => import("react").ReactElement