import type { WithChildren } from '@dynatrace/strato-components/core'; /** * Accepted properties for FilterFieldSuggestions. * @public */ export type FilterFieldSuggestionsProps = WithChildren & { /** 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.js").JSX.Element; displayValue: string; };