export declare class AgentAction {
    readonly thought: string;
    readonly tool: string;
    readonly toolInput: string;
    readonly text: string;
    readonly result: string;
    constructor(thought: string, tool: string, toolInput: string, text: string, result: string);
}
