import { Component } from 'solid-js';
import { TypeGraph } from '../core/type-graph';

interface GraphViewportProps {
    typeGraph: TypeGraph;
    selectedTypeID: string | null;
    selectedEdgeID: string | null;
    onSelectNode: (id: string | null) => void;
    onSelectEdge: (id: string | null) => void;
}
export declare const GraphViewport: Component<GraphViewportProps>;
export {};
