import type { ToolDescriptor } from '@n8n/agents'; import { type AgentJsonConfig, type AgentSkill } from '@n8n/api-types'; import { WithTimestamps } from '@n8n/db'; import { type Relation } from '@n8n/typeorm'; import type { Agent } from './agent.entity'; export declare class AgentHistory extends WithTimestamps { versionId: string; agentId: string; agent: Relation; schema: AgentJsonConfig | null; tools: Record | null; skills: Record | null; publishedById: string | null; author: string; }