import { InternalNodeBlueprint, InternalNode, InternalNodeProps, SocketBlueprint } from '../../../../../core/src/library/index'; import React from 'react'; import { ReactComponent } from '../Editor'; import { InputSocket, OutputSocket } from '../Socket'; export declare type NodeBlueprint, O = Record, S = Record> = InternalNodeBlueprint; export declare type Node = InternalNode; export declare type NodeProps | never> = any, O extends Record | never> = any, S = Record> = Omit, 'outputs' | 'inputs'> & { inputs: I; outputs: O; store: S; setStore: React.Dispatch>; };