import { type DistributivePick } from '@xyflow/system'; import type { Node } from '../types'; /** * Hook for receiving data of one or multiple nodes * * @public * @param nodeId - The id (or ids) of the node to get the data from * @returns An array of data objects */ export declare function useNodesData(nodeId: string): { current: DistributivePick | null; }; export declare function useNodesData(nodeIds: string[]): { current: DistributivePick[]; };