import { Placement } from "@floating-ui/dom"; interface PopoverPlacementOptions { placement: Placement; arrowElement?: HTMLElement | null; enableFallback: boolean; fallbackAxisSideDirection: 'none' | 'start' | 'end'; matchReferenceWidth: boolean; minHeight?: number | null; offset: number; } declare function PopoverPlacementOptions(options?: Partial): PopoverPlacementOptions; export { PopoverPlacementOptions };