export declare class TelescopeEntryEntity {
    id: string;
    type: string;
    familyHash: string;
    content: Record<string, any>;
    tags: string[];
    timestamp: Date;
    sequence: number;
    batchId?: string;
    createdAt: Date;
    userId?: string;
    sessionId?: string;
    environment?: string;
    metadata?: string;
}
