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