@difizen/ai-flow
Version:
Scalable, out-of-the-box, agent-oriented flow
19 lines (18 loc) • 537 B
TypeScript
import { type NodeType } from "../../../interfaces/flow";
import React from 'react';
export declare const NodeWrapper: (props: {
nodeProps: NodeType;
children?: React.ReactNode;
leftHandler?: boolean;
rightHandler?: boolean;
rightHandlerConfig?: {
id: string;
style: Record<string, any>;
}[];
icon?: string;
name?: string | React.ReactNode;
extra?: React.ReactNode;
folded?: boolean;
className?: string;
onClick?: () => void;
}) => import("react/jsx-runtime").JSX.Element;