export type EntityName = "works" | "authors" | "sources" | "institutions" | "topics" | "publishers" | "funders" | "concepts"; export interface EntitySpec { name: EntityName; singular: string; description: string; supportsSearch: boolean; supportsAutocomplete: boolean; supportsGroup: boolean; supportsRandom: boolean; } export declare function listEntities(): EntitySpec[]; export declare function getEntitySpec(name: string): EntitySpec;