import type { WithChildren, MaskingProps, AriaLabelingProps, DataTestId } from '@dynatrace/strato-components/core'; import type { ModalAriaProps } from '../../../overlays/hooks/useOverlayWithTrigger.js'; /** * Accepted properties for FilterField suggestion overlay. * @public */ export interface SuggestionsOverlayProps extends AriaLabelingProps, WithChildren, DataTestId, MaskingProps { /** Whether the overlay is open. */ isOpen: boolean; /** * Properties for connecting the overlay to the overlay trigger. * Includes styles and accessibility attributes. */ overlayProps?: ModalAriaProps; } /** * @public */ export declare const SuggestionsOverlay: (props: SuggestionsOverlayProps & import("react").RefAttributes) => React.ReactElement | null;