import { IStreamLogger } from '../PSAgentLogger'; import { PSAgentTool } from '../PSAgentTool'; export declare class PSClarifyTool extends PSAgentTool { static readonly toolName = "clarify_tool"; private answer; constructor(options: { answer: (questions: string[], context: string) => Promise; }); run(input: Record, log?: IStreamLogger): Promise>; }