import { type PropsWithChildren } from 'react'; import { type DataTestId, type StylingProps } from '@dynatrace/strato-components/core'; /** * Props for the SelectV2GroupLabel component. * @public */ export type SelectV2GroupLabelProps = PropsWithChildren & StylingProps & DataTestId; /** * `SelectV2.GroupLabel` defines the label of an option group. The component * is only valid within a `SelectV2.Group`. * * @example * ```tsx * * Colors * Red * Green * * ``` * @public */ export declare function SelectV2GroupLabel(props: SelectV2GroupLabelProps): null; /** * Props for the SelectV2Group component * @public */ export type SelectV2GroupProps = PropsWithChildren & StylingProps & DataTestId; /** * `SelectV2.Group` defines a group of options that share some commonalities. * The component is only valid within a `SelectV2.Content` element. * * @example * ```tsx * * * Colors * Red * Green * * * ``` * @public */ export declare function SelectV2Group(props: SelectV2GroupProps): null;