export interface CanSelectNode {
    selectNode(id: string): void;
    deselectNode(): void;
}
export declare type OnSelectionChangedHandler = (id: string | null) => void;
