import type { Intent } from '../models.js'; import type { BaseNode, Nullable } from '@voiceflow/base-types'; import type { NodeNoMatch, NodeNoReply, StepNoMatch, StepNoReply } from './utils.js'; export interface IntentCapture extends BaseNode.CaptureV2.IntentCapture { intent: Intent; } export interface StepData extends BaseNode.CaptureV2.StepData { capture: IntentCapture | BaseNode.CaptureV2.QueryCapture; noReply?: Nullable>; noMatch?: Nullable>; } export interface Step> extends BaseNode.CaptureV2.Step { } export interface Node extends BaseNode.CaptureV2.Node { noReply?: Nullable; noMatch?: Nullable; } //# sourceMappingURL=captureV2.d.ts.map