import type { ElementType } from "react"; import type { CompositeRowOptions } from "../composite/composite-row.tsx"; import type { Props } from "../utils/types.ts"; import type { SelectStore } from "./select-store.ts"; declare const TagName = "div"; type TagName = typeof TagName; /** * Returns props to create a `SelectRow` component. * @see https://ariakit.com/components/select * @example * ```jsx * const store = useSelectStore(); * const props = useSelectRow({ store }); * * * * * * * ``` */ export declare const useSelectRow: import("../utils/types.ts").Hook<"div", SelectRowOptions<"div">>; /** * Renders a select row that allows two-dimensional arrow key navigation. * [`SelectItem`](https://ariakit.com/reference/select-item) elements wrapped * within this component will automatically receive a * [`rowId`](https://ariakit.com/reference/select-item#rowid) prop. * @see https://ariakit.com/components/select * @example * ```jsx {4-11} * *