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