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