import type { BaseNode } from '@voiceflow/base-types';
import type * as Buttons from './buttons/index.js';
import type * as Capture from './capture/index.js';
import type * as CaptureV2 from './captureV2/index.js';
import type * as Carousel from './carousel/index.js';
import type * as Interaction from './interaction/index.js';
import type * as Prompt from './prompt/index.js';
import type * as Speak from './speak/index.js';
import type * as Stream from './stream.js';
export * as Buttons from './buttons/index.js';
export * as Capture from './capture/index.js';
export * as CaptureV2 from './captureV2/index.js';
export * as Carousel from './carousel/index.js';
export * as Interaction from './interaction/index.js';
export * as Prompt from './prompt/index.js';
export * as Speak from './speak/index.js';
export * as Stream from './stream.js';
export type AnyExtendedStep = Speak.Step | Prompt.Step | Capture.Step | CaptureV2.Step | Interaction.Step | Stream.Step | Buttons.Step | Carousel.Step;
export type AnyExtendedNode = Speak.Node | Capture.Node | CaptureV2.Node | Interaction.Node | Stream.Node | Carousel.Node;
export type AnyStep = BaseNode.AnyCommonStep | AnyExtendedStep | BaseNode.Card.Step;
export type AnyNode = BaseNode.AnyCommonNode | AnyExtendedNode | BaseNode.Card.Node;
export type AnyCommand = BaseNode.AnyCommonCommand;
//# sourceMappingURL=index.d.ts.map