import { WithTimestampsAndStringId } from '@n8n/db'; export type ObservationMarker = 'critical' | 'important' | 'info' | 'completion'; export type ObservationStatus = 'active' | 'superseded' | 'dropped'; export declare class AgentObservationEntity extends WithTimestampsAndStringId { agentId: string; observationScopeId: string; marker: ObservationMarker; text: string; parentId: string | null; tokenCount: number; status: ObservationStatus; supersededBy: string | null; }