import { Node } from "../nodes.js"; export declare function safeGet(fn: () => T): T | undefined; export declare function formatNodeLabel(node: Node): string; export declare function getNodeStatus(node: Node): string | undefined; export declare const __private__: { safeGet: typeof safeGet; formatNodeLabel: typeof formatNodeLabel; getNodeStatus: typeof getNodeStatus; };