import { PromptResponseValidator, Validation, PromptResponse } from "alphawave"; import { PromptFunctions, PromptMemory, Tokenizer } from "promptrix"; import { Command, AgentThought } from "./types"; export declare class AgentCommandValidator implements PromptResponseValidator { private readonly _thoughtValidator; private readonly _commands; constructor(commands: Map); validateResponse(memory: PromptMemory, functions: PromptFunctions, tokenizer: Tokenizer, response: PromptResponse, remaining_attempts: number): Promise>; } //# sourceMappingURL=AgentCommandValidator.d.ts.map