/** * Import elements from a CSV file. Generates a .sysml file. */ export declare function importCsvCommand(csvFile: string, options: { output?: string; package?: string; dryRun?: boolean; }): Promise; /** * Import relationships from a CSV file. Appends to existing or generates new .sysml. */ export declare function importRelCsvCommand(csvFile: string, options: { output?: string; package?: string; dryRun?: boolean; }): Promise; /** * Generate template CSV files based on the current ontology config. */ export declare function importTemplateCommand(templateType: string, options: { output?: string; }): Promise; /** * Show a diff of what a CSV import would change without modifying the model. * Useful for reviewing updates before committing. */ export declare function importDiffCommand(csvFile: string, options: { detectRemovals?: boolean; }): Promise; //# sourceMappingURL=import.d.ts.map