import { ChatLogs, ChatMessage } from '../agent-core/index.js';
import { Timer } from './Timer.js';
export declare class DebugLlmReq {
    time: Timer;
    chatLogs: ChatLogs;
    response?: ChatMessage | undefined;
    constructor(time: Timer, chatLogs: ChatLogs, response?: ChatMessage | undefined);
    get tokens(): number;
    toString(): string;
    toJSON(): {
        time: Timer;
        tokens: number;
        response?: ChatMessage;
        chat: ChatLogs;
    };
}
