import type { Struct } from '@voiceflow/common'; import type { NodeType } from './constants'; import type { BaseNode, BaseStep, EmptyStepPorts } from './utils'; export type StepData = Struct; export interface NodeData { end: true; } export interface StepPorts extends EmptyStepPorts { } export interface Step extends BaseStep { type: NodeType.EXIT; } export interface Node extends BaseNode { type: NodeType.EXIT; end: true; } //# sourceMappingURL=exit.d.ts.map