import type { ElementType } from "react";
import type { CompositeGroupOptions } from "../composite/composite-group.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 `SelectGroup` component.
* @see https://ariakit.com/components/select
* @example
* ```jsx
* const store = useSelectStore();
* const props = useSelectGroup({ store });
*
*
*
* Fruits
*
*
*
*
* ```
*/
export declare const useSelectGroup: import("../utils/types.ts").Hook<"div", SelectGroupOptions<"div">>;
/**
* Renders a group for [`SelectItem`](https://ariakit.com/reference/select-item)
* elements. Optionally, a
* [`SelectGroupLabel`](https://ariakit.com/reference/select-group-label) can be
* rendered as a child to provide a label for the group.
* @see https://ariakit.com/components/select
* @example
* ```jsx {4-8}
*
*
*
*
* Fruits
*
*
*
*
*
* ```
*/
export declare const SelectGroup: (props: SelectGroupProps) => import("react").ReactElement>;
export interface SelectGroupOptions extends CompositeGroupOptions {
/**
* 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 SelectGroupProps = Props>;
export {};