import { MessageStorage } from "./MessageStorage"; import { StorageDirectoryEntry, StreamDirectoryEntry } from "compound-binary-file-js"; import { PropertiesStream } from "./property/PropertiesStream"; import { NamedPropertyMappingStorage } from "./nameid_mapping/NamedPropertyMappingStorage"; export declare class Recipient extends MessageStorage { static readonly RECIPIENT_STORAGE_PREFIX = "__recip_version1.0"; constructor(directoryEntry: StorageDirectoryEntry, namedPropertyMappingStorage: NamedPropertyMappingStorage); protected createPropertiesStream(stream: StreamDirectoryEntry): PropertiesStream; }