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