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}
*
*
*
*
*
*
*
*
*
*
*
*
*
* ```
*/
export declare const SelectRow: (props: SelectRowProps) => import("react").ReactElement>;
export interface SelectRowOptions extends CompositeRowOptions {
/**
* Object returned by the
* [`useSelectStore`](https://ariakit.com/reference/use-select-store) hook. If
* not provided, the parent
* [`SelectList`](https://ariakit.com/reference/select-list) or
* [`SelectPopover`](https://ariakit.com/reference/select-popover) components'
* context will be used.
*/
store?: SelectStore;
}
export type SelectRowProps = Props>;
export {};