import type { ChatNode } from '@voiceflow/chat-types';
import type { SharedNode } from './base.js';
export interface ChatStepData extends ChatNode.Interaction.StepData {
}
export interface ChatStep extends ChatNode.Interaction.Step<ChatStepData> {
}
export interface ChatNode extends Omit<ChatNode.Interaction.Node, 'interactions' | 'buttons'>, SharedNode {
}
//# sourceMappingURL=chat.d.ts.map