import { Project, WithTimestampsAndStringId } from '@n8n/db';
import { Agent } from './agent.entity';
export declare class AgentExecutionThread extends WithTimestampsAndStringId {
    agent: Agent;
    agentId: string;
    agentName: string;
    title: string | null;
    emoji: string | null;
    project: Project;
    projectId: string;
    sessionNumber: number;
    totalPromptTokens: number;
    totalCompletionTokens: number;
    totalCost: number;
    totalDuration: number;
}
