import type { BehaviorTrackingProps } from '../../../core/types/behavior-tracking-props.js'; import type { DataTestId } from '../../../core/types/data-props.js'; import type { StylingProps } from '../../../core/types/styling-props.js'; import type { WithChildren } from '../../../core/types/with-children.js'; /** * Accepted properties for FilterFieldSuggestions. * @public */ export type FilterFieldSuggestionsProps = WithChildren & StylingProps & DataTestId & BehaviorTrackingProps & { /** Whether the suggestions are loading. If true, a loading indicator is shown and otherwise the suggestions are shown. */ loading?: boolean; }; /** * Compound component of the FilterField to apply suggestions. * @public */ export declare const Suggestions: { (props: FilterFieldSuggestionsProps): import("react/jsx-runtime").JSX.Element; displayValue: string; };