/** * DataPathLane Component * * Renders a data access path as a curved "hyperspace lane" between * entry points and tables. Animated particles flow along the path. */ import type { DataPath, Vector3D } from '../../types/index.js'; export interface DataPathLaneProps { /** Path data */ path: DataPath; /** Source position */ sourcePosition: Vector3D; /** Target position */ targetPosition: Vector3D; /** Whether this path is selected */ isSelected?: boolean; /** Whether this path is hovered */ isHovered?: boolean; /** Click handler */ onClick?: () => void; /** Hover handlers */ onPointerOver?: () => void; onPointerOut?: () => void; } export declare function DataPathLane({ path, sourcePosition, targetPosition, isSelected, isHovered, onClick, onPointerOver, onPointerOut, }: DataPathLaneProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=DataPathLane.d.ts.map