import { EntryPropertyInterface } from "../../RcsbCollectTools/DataCollectors/MultipleEntryPropertyCollector"; export interface GroupPropertiesProviderInterface { entryProperties: Array; } interface ItemPropertyInterface { objectId: string; value: number | string; } export type GroupPropertyType = "experimental_method" | "resolution"; export declare class GroupPropertiesProvider { private readonly entryProperties; constructor(properties: GroupPropertiesProviderInterface); get(key: GroupPropertyType): ItemPropertyInterface[] | undefined; private getEntryProperties; } export {};