import type { ElementType } from "react";
import type { CompositeGroupOptions } from "../composite/composite-group.tsx";
import type { Props } from "../utils/types.ts";
import type { ComboboxStore } from "./combobox-store.ts";
declare const TagName = "div";
type TagName = typeof TagName;
/**
* Returns props to create a `ComboboxGroup` component.
* @see https://ariakit.com/components/combobox
* @example
* ```jsx
* const store = useComboboxStore();
* const props = useComboboxGroup({ store });
*
*
*
* Label
*
*
*
*
* ```
*/
export declare const useComboboxGroup: import("../utils/types.ts").Hook<"div", ComboboxGroupOptions<"div">>;
/**
* Renders a group for
* [`ComboboxItem`](https://ariakit.com/reference/combobox-item) elements.
* Optionally, a
* [`ComboboxGroupLabel`](https://ariakit.com/reference/combobox-group-label)
* can be rendered as a child to provide a label for the group.
* @see https://ariakit.com/components/combobox
* @example
* ```jsx {4-8}
*
*
*
*
* Fruits
*
*
*
*
*
* ```
*/
export declare const ComboboxGroup: (props: ComboboxGroupProps) => import("react").ReactElement>;
export interface ComboboxGroupOptions extends CompositeGroupOptions {
/**
* Object returned by the
* [`useComboboxStore`](https://ariakit.com/reference/use-combobox-store)
* hook. If not provided, the closest
* [`ComboboxList`](https://ariakit.com/reference/combobox-list) or
* [`ComboboxPopover`](https://ariakit.com/reference/combobox-popover)
* components' context will be used.
*/
store?: ComboboxStore;
}
export type ComboboxGroupProps = Props>;
export {};