import React from 'react'; import type { PopoverProps } from './types'; /** * Popover — anchored contextual overlay. * * Renders children above all other content via Portal, positioned relative to * the provided `anchorRef`. Dismiss by pressing the backdrop if `onClose` is provided. * * Inline opacity animation via withTiming (does NOT import from Fade to prevent * circular dependency if Fade ever wraps Popover). */ export declare function Popover(rawProps: PopoverProps): React.ReactElement | null; //# sourceMappingURL=Popover.d.ts.map