/** * This file centralizes the commands related to import */ import { EditorModel } from '../../editormodel'; import { ModelAction } from '../model'; /** * Import an element from another model * @param id The ID of the imported element * @param ref The model containing the element to be imported * @param x The location (x-coordinate) of the element * @param y The location (y-coordinate) of the element * @param page The page ID where the imported model is added */ export declare function importElmCommand(id: string, ref: EditorModel, x: number, y: number, page: string): import("../hybird/distributor").ElmImportReference & { act: "hybird"; actions?: ModelAction[] | undefined; } & { type: "model"; }; //# sourceMappingURL=import.d.ts.map