import { type ElementType } from 'react'; import type { SelectGroupProps } from './types'; /** * Groups related select items together with an optional label. Provides semantic structure and accessibility. */ export declare const SelectGroup: { ({ as, children, ...props }: SelectGroupProps): import("react/jsx-runtime").JSX.Element; displayName: string; };