import type { BaseNode, Nullable } from '@voiceflow/base-types'; import type { DeprecatedNodeNoMatch, NodeNoMatch, NodeNoReply, NodeReprompt, StepNoMatch, StepNoReply, StepReprompt } from './utils.js'; export interface StepData extends BaseNode.Interaction.StepData, StepReprompt { noReply?: Nullable>; noMatch?: Nullable>; /** * @deprecated use noMatch instead */ else?: StepNoMatch; } export interface Step> extends BaseNode.Interaction.Step { } export interface Node extends BaseNode.Interaction.Node, DeprecatedNodeNoMatch, NodeReprompt { noMatch?: Nullable; noReply?: Nullable; } //# sourceMappingURL=interaction.d.ts.map