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.

15 lines 638 B
import * as React from 'react'; import type { BaseUIComponentProps } from "../../utils/types.js"; /** * Groups related select items with the corresponding label. * Renders a `<div>` element. * * Documentation: [Base UI Select](https://base-ui.com/react/components/select) */ export declare const SelectGroup: React.ForwardRefExoticComponent<SelectGroupProps & React.RefAttributes<HTMLDivElement>>; export interface SelectGroupState {} export interface SelectGroupProps extends BaseUIComponentProps<'div', SelectGroup.State> {} export declare namespace SelectGroup { type State = SelectGroupState; type Props = SelectGroupProps; }