import type * as HydraDB from "../index.js"; export interface SearchEntityProfileView { compiledAt?: string; /** Unique identifier for this entity in the graph. */ entityId?: string; entityType?: string; entries?: HydraDB.SearchProfileEntry[]; headline?: string; /** Human-readable label for this resource. */ name?: string; pendingImportance?: number; perspective?: string; subject?: string; summary?: string; summaryCites?: string[]; unknown?: string[]; version?: number; }