import { CSSProperties } from 'react'; import { ClientBoundingRect } from 'tour-navigator/lib/TourNavigator/types'; interface OverlayProps extends ClientBoundingRect { id: string; style?: CSSProperties; maskStyle?: CSSProperties; maskOpacity?: number; maskRadius?: number; overlayFill?: string; overlayOpacity?: number; highlightStyle?: CSSProperties; highlightOpacity?: number; highlightStroke?: string; highlightStrokeWidth?: number; highlightStrokeDasharray?: number; } export default function Overlay({ id, x, y, height, width, style, maskRadius, maskOpacity, maskStyle, overlayFill, overlayOpacity, highlightStyle, highlightOpacity, highlightStroke, highlightStrokeWidth, highlightStrokeDasharray }: OverlayProps): import("react/jsx-runtime").JSX.Element; export {};