import type { IntentRequest } from '../request/index.js'; import type { EmptyObject, Nullable } from '@voiceflow/common'; import type { NodeType } from './constants.js'; import type { BaseNode, BaseNoMatchNodeData, BaseStep } from './utils/index.js'; export interface StepData { intent: Nullable; diagramID: Nullable; } export interface Step extends BaseStep { type: NodeType.GOTO; } export interface Node extends BaseNode, BaseNoMatchNodeData { type: NodeType.GOTO; request: IntentRequest; platform?: string; } //# sourceMappingURL=goTo.d.ts.map