UNPKG

@base-ui-components/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

13 lines 624 B
import * as React from 'react'; import { BaseUIComponentProps } from "../../utils/types.js"; /** * An accessible label that is automatically associated with its parent group. * Renders a `<div>` element. */ export declare const ComboboxGroupLabel: React.ForwardRefExoticComponent<ComboboxGroupLabelProps & React.RefAttributes<HTMLDivElement>>; export interface ComboboxGroupLabelState {} export interface ComboboxGroupLabelProps extends BaseUIComponentProps<'div', ComboboxGroupLabel.State> {} export declare namespace ComboboxGroupLabel { type State = ComboboxGroupLabelState; type Props = ComboboxGroupLabelProps; }