import { type PropsWithChildren } from 'react'; import type { BehaviorTrackingProps } from '../../core/types/behavior-tracking-props.js'; import { DataTestId } from '../../core/types/data-props.js'; import { StylingProps } from '../../core/types/styling-props.js'; /** * Props for the SelectGroupLabel component. * @public */ export type SelectGroupLabelProps = PropsWithChildren & StylingProps & DataTestId & BehaviorTrackingProps; /** * `Select.GroupLabel` defines the label of an option group. The component * is only valid within a `Select.Group`. * * @example * ```tsx * * Colors * Red * Green * * ``` * @public */ export declare function SelectGroupLabel(props: SelectGroupLabelProps): null; /** * Props for the SelectGroup component * @public */ export type SelectGroupProps = PropsWithChildren & StylingProps & DataTestId & BehaviorTrackingProps; /** * `Select.Group` defines a group of options that share some commonalities. * The component is only valid within a `Select.Content` element. * * @example * ```tsx * * * Colors * Red * Green * * * ``` * @public */ export declare function SelectGroup(props: SelectGroupProps): null;