import type { Coordinates } from "@reshaped/headless/internal"; type SafePolygonOptions = { contentRef: React.RefObject; triggerRef: React.RefObject; position: string | null | undefined; onClose: () => void; origin: Coordinates; }; export declare function createSafeArea(options: SafePolygonOptions): () => void; export {};