export type SelectNode = () => void; export type DeselectNode = () => void; type SelectNodeContextValue = (selectNode: SelectNode, deselectNode: DeselectNode) => void; export declare const SelectNodeContext: import("react").Context; export {};