import type { Nullable } from '@voiceflow/common'; import type { NodeType } from './constants.js'; import type { BaseNode, BaseStep, NodeNextID } from './utils/index.js'; export interface StepData { traces: Nullable[]; } export interface Step extends BaseStep { type: NodeType.GENERAL; } export interface Node extends BaseNode, NodeNextID { type: NodeType.GENERAL; traces: any[]; } //# sourceMappingURL=general.d.ts.map