import { SchemaBasedCommand } from "../SchemaBasedCommand"; import { TaskContext, TaskResponse } from "../types"; export interface ConfirmAnswerCommandInput { answer: string; confirmation: string; } export declare class ConfirmAnswerCommand extends SchemaBasedCommand { constructor(title?: string, description?: string); execute(context: TaskContext, input: ConfirmAnswerCommandInput): Promise; } //# sourceMappingURL=ConfirmAnswerCommand.d.ts.map