import { ProcessNode } from './types';
export type DiagnosticsTreeProps = {
    root?: ProcessNode;
    selectedPid?: number | null;
    expandAll?: boolean | null;
    onSelect: (pid: number) => void;
};
export declare function DiagnosticsTree({ root, selectedPid, expandAll, onSelect, }: DiagnosticsTreeProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=DiagnosticsTree.d.ts.map