import React from "react";
interface Node {
    id: string;
    content: React.ReactNode;
    position: {
        x: number;
        y: number;
    };
}
interface Connection {
    from: string;
    to: string;
    direction?: "horizontal" | "vertical";
}
interface ConnectionGraphProps {
    nodes: Node[];
    connections: Connection[];
    beamColor?: string;
    beamDuration?: number;
    className?: string;
}
export declare const ConnectionGraph: React.FC<ConnectionGraphProps>;
export default ConnectionGraph;
