import type { BehaviorTrackingProps } from '../../../core/types/behavior-tracking-props.js'; import { DataTestId } from '../../../core/types/data-props.js'; import { DOMProps } from '../../../core/types/dom.js'; import { StylingProps } from '../../../core/types/styling-props.js'; import { WithChildren } from '../../../core/types/with-children.js'; /** * Accepted properties for the FilterField suggestion group label. * @public */ export type FilterFieldSuggestionGroupLabelProps = WithChildren & DOMProps & StylingProps & DataTestId & BehaviorTrackingProps; /** * @public */ export declare const SuggestionGroupLabel: { (props: FilterFieldSuggestionGroupLabelProps): import("react/jsx-runtime").JSX.Element; displayValue: string; };