import type { ElementType } from "react";
import type { CompositeGroupLabelOptions } from "../composite/composite-group-label.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 `ComboboxGroupLabel` component. This hook should be
* used in a component that's wrapped with `ComboboxGroup` so the
* `aria-labelledby` is correctly set on the combobox group element.
* @see https://ariakit.com/components/combobox
* @example
* ```jsx
* // This component should be wrapped with ComboboxGroup
* const props = useComboboxGroupLabel();
* Label
* ```
*/
export declare const useComboboxGroupLabel: import("../utils/types.ts").Hook<"div", ComboboxGroupLabelOptions<"div">>;
/**
* Renders a label in a combobox group. This component should be wrapped with
* [`ComboboxGroup`](https://ariakit.com/reference/combobox-group) so the
* `aria-labelledby` is correctly set on the group element.
* @see https://ariakit.com/components/combobox
* @example
* ```jsx {5}
*
*
*
*
* Fruits
*
*
*
*
*
* ```
*/
export declare const ComboboxGroupLabel: (props: ComboboxGroupLabelProps) => import("react").ReactElement>;
export interface ComboboxGroupLabelOptions extends CompositeGroupLabelOptions {
/**
* 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 ComboboxGroupLabelProps = Props>;
export {};