import type { MotionPathPoint } from '../core'; export type PathRecorderOverlayProps = { target: HTMLElement; onComplete: (points: MotionPathPoint[]) => void; onCancel: () => void; }; export declare function PathRecorderOverlay({ target, onComplete, onCancel, }: PathRecorderOverlayProps): import("react/jsx-runtime").JSX.Element;