import { FlowTreeNode } from '../types';
export declare const findNodeById: (nodes: FlowTreeNode[], id: string) => FlowTreeNode | undefined;
export declare const findParentNodeById: (nodes: FlowTreeNode[], id: string) => FlowTreeNode | undefined;
