import type { BaseNode, Nullable } from '@voiceflow/base-types'; import type { NodeNoMatch, NodeNoReply, StepNoMatch, StepNoReply } from './utils'; export interface StepData extends BaseNode.CardV2.StepData { description: string; noReply?: Nullable>; noMatch?: Nullable>; } export interface Step> extends BaseNode.CardV2.Step { } export interface Node extends BaseNode.CardV2.Node { description: string; noReply?: Nullable; noMatch?: Nullable; } //# sourceMappingURL=cardV2.d.ts.map