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

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