import type { BibDB, ExportDoc, ImageDB, User } from "@fiduswriter/document"; import { SaveCopy as GenericSaveCopy } from "@fiduswriter/document/exporter/native"; import type { EditorDocumentImportApi } from "../../types.js"; interface E2EEOptions { enabled?: boolean; key?: CryptoKey; sourceKey?: CryptoKey; targetE2EE?: boolean; targetPassword?: string; salt?: string; iterations?: number; } export declare class SaveCopy extends GenericSaveCopy { constructor(doc: Record | ExportDoc, bibDB: BibDB, imageDB: ImageDB, newUser: User, importId?: string | number | null, e2eeOptions?: E2EEOptions | null, documentImportApi?: EditorDocumentImportApi); } export {}; //# sourceMappingURL=copy.d.ts.map