import { SchemaBasedCommand } from "../SchemaBasedCommand"; import { TaskContext, TaskResponse } from "../types"; export interface CompleteTaskCommandInput { status: string; } export declare class CompleteTaskCommand extends SchemaBasedCommand { private response?; constructor(response?: string | undefined, title?: string, description?: string); execute(context: TaskContext, input: CompleteTaskCommandInput): Promise; } //# sourceMappingURL=CompleteTaskCommand.d.ts.map