export declare type HoloHash = Uint8Array; export declare type AgentPubKey = HoloHash; export declare type DnaHash = HoloHash; export declare type EntryHash = HoloHash; export declare type ActionHash = HoloHash; export declare type AnyDhtHash = HoloHash; export declare type KitsuneAgent = Uint8Array; export declare type KitsuneSpace = Uint8Array; export declare type InstalledAppId = string; export declare type Signature = Uint8Array; export declare type CellId = [DnaHash, AgentPubKey]; export declare type DnaProperties = any; export declare type RoleId = string; export declare type InstalledCell = { cell_id: CellId; role_id: RoleId; }; export declare type Timestamp = number; export interface HoloHashed { hash: HoloHash; content: T; }