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 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 {};