import { SmartBezierEdge, SmartStraightEdge, SmartStepEdge } from '../index'; import { SmartEdgeCustomLabel } from './CustomLabel'; import type { Node, Edge } from 'reactflow'; export declare const edgeTypes: { smartBezier: typeof SmartBezierEdge; smartStraight: typeof SmartStraightEdge; smartStep: typeof SmartStepEdge; smartBezierLabel: typeof SmartEdgeCustomLabel; }; export type NodeData = { label: string; }; export type EdgeData = { customField: string; } | undefined; export declare const nodes: Node[]; export declare const edgesBezier: Edge[]; export declare const edgesStraight: Edge[]; export declare const edgesStep: Edge[]; export declare const edgesLabel: Edge[];