import { PromptSectionBase, PromptFunctions, PromptMemory, Tokenizer, Message, RenderedPromptSection } from "promptrix"; import { Command } from "./types"; export declare class AgentCommandSection extends PromptSectionBase { private readonly _commands; constructor(commands: Map, tokens?: number, required?: boolean); renderAsMessages(memory: PromptMemory, functions: PromptFunctions, tokenizer: Tokenizer, maxTokens: number): Promise>; } //# sourceMappingURL=AgentCommandSection.d.ts.map