import type { Prompt } from '../models.js';
import type { BaseNode } from '@voiceflow/base-types';
export interface StepNoReply<Voice> extends BaseNode.Utils.StepNoReply<Prompt<Voice>> {
}
export interface NodeNoReply extends BaseNode.Utils.NodeNoReply<string> {
}
export interface StepNoMatch<Voice> extends BaseNode.Utils.StepNoMatch<Prompt<Voice>> {
}
export interface NodeNoMatch extends BaseNode.Utils.NodeNoMatch<string> {
}
/**
 * @deprecated use StepNoReply instead
 */
export interface StepReprompt<Voice> extends BaseNode.Utils.StepReprompt<Prompt<Voice>> {
}
/**
 * @deprecated use NodeNoReply instead
 */
export interface NodeReprompt extends BaseNode.Utils.NodeReprompt<string> {
}
/**
 * @deprecated use NodeNoMatch instead
 */
export interface DeprecatedNodeNoMatch extends BaseNode.Utils.DeprecatedNodeNoMatch<string> {
}
//# sourceMappingURL=utils.d.ts.map