import { Enum } from '../constants'; export declare const ObjectType: { readonly participant: "participant"; readonly self: "self"; readonly locus: "locus"; readonly mediaShare: "mediashare"; readonly info: "info"; readonly fullState: "fullstate"; readonly links: "links"; readonly control: "controlentry"; readonly metadata: "metadata"; readonly embeddedApp: "embeddedapp"; }; export type ObjectType = Enum; export declare const ObjectTypeToLocusKeyMap: { links: string; info: string; fullstate: string; self: string; participant: string; mediashare: string; controlentry: string; embeddedapp: string; }; export interface HtMeta { elementId: { type: ObjectType; id: number; version: number; }; dataSetNames: string[]; } export interface HashTreeObject { htMeta: HtMeta; data: Record; }