import { type DataTestId, type StylingProps, type WithChildren, type AriaLabelingProps } from '@dynatrace/strato-components/core'; /** * Accepted properties for FilterField suggestion group. * @public */ export type FilterFieldSuggestionGroupProps = WithChildren & AriaLabelingProps & StylingProps & DataTestId; /** * @public */ export declare const SuggestionGroup: { (props: FilterFieldSuggestionGroupProps): import("react/jsx-runtime.js").JSX.Element; displayValue: string; };