import type { NodeType } from './constants'; import type { BaseNode, BaseStep, NodeID } from './utils'; export interface StepData { label?: string; } export interface Step extends BaseStep { type: NodeType.START; } export interface Node extends BaseNode { type: NodeType.START; nextId?: NodeID; } //# sourceMappingURL=start.d.ts.map