import { ICommandData, CommandType } from "../CommandData.js"; import { AttachmentData } from "../../Attachments/index.js"; import { RemoteAttachmentParameters } from "../../Operations/Attachments/RemoteAttachmentParameters.js"; import { DocumentConventions } from "../../Conventions/DocumentConventions.js"; export declare class PutAttachmentCommandData implements ICommandData { id: string; name: string; changeVector: string; type: CommandType; contentType: string; attStream: AttachmentData; remoteParameters?: RemoteAttachmentParameters; constructor(documentId: string, name: string, stream: AttachmentData, contentType: string, changeVector: string, remoteParameters?: RemoteAttachmentParameters); serialize(conventions: DocumentConventions): object; } //# sourceMappingURL=PutAttachmentCommandData.d.ts.map