import React from 'react'; import { Placement } from '@sanity/ui'; declare type Props = { boundaryElement?: HTMLElement | null; onClose: () => void; referenceElement?: HTMLElement | null; children?: React.ReactNode; placement?: Placement; title?: string; depth?: number; fallbackPlacements?: Placement[]; preventOverflow?: boolean; portal?: boolean; size?: 'small' | 'medium' | 'large' | 'auto'; }; export declare function PopoverDialog({ boundaryElement, children, onClose, placement, referenceElement, depth, preventOverflow, fallbackPlacements, portal, title, size, }: Props): React.JSX.Element; export {}; //# sourceMappingURL=PopoverDialog.d.ts.map