import type { AriaLabelingProps } from '../../../core/types/a11y-props.js'; import type { DataTestId } from '../../../core/types/data-props.js'; import type { MaskingProps } from '../../../core/types/masking-props.js'; import type { WithChildren } from '../../../core/types/with-children.js'; import type { ModalAriaProps } from '../../../overlays/hooks/useOverlayWithTrigger.js'; /** * Accepted properties for FilterField suggestion overlay. * @public */ export interface SuggestionsOverlayProps extends AriaLabelingProps, WithChildren, DataTestId, MaskingProps { /** * 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) => import("react").ReactElement | null;