import React from 'react'; import type { Placement } from '../types'; interface GuideOverlayProps { targetElement: HTMLElement | null; highlightPadding?: number; allowInteraction?: boolean; onMaskClick?: () => void; placement?: Placement; } export declare const GuideOverlay: React.FC; export {};