/** * memo import ea — Import from Sparx EA JSON export. * * EA projects should be exported as JSON first via EA's scripting API * or third-party tools. The JSON format is: * { * "elements": [{ id, name, type, stereotype, notes, package, taggedValues }], * "connectors": [{ id, sourceId, targetId, type, stereotype }] * } */ export declare function importEaCommand(file: string, options: { output?: string; package?: string; dryRun?: boolean; }): Promise; /** * memo import cameo — Import from MagicDraw/Cameo. * * Accepts: * - .xml/.mdxml — XMI export from MagicDraw * - .json — JSON intermediate format * * For .mdzip files, users should first extract the XML: * unzip model.mdzip com.nomagic.magicdraw.uml_model.model -d extracted/ * memo import cameo extracted/com.nomagic.magicdraw.uml_model.model */ export declare function importCameoCommand(file: string, options: { output?: string; package?: string; dryRun?: boolean; }): Promise; //# sourceMappingURL=import-ea.d.ts.map