import { Action } from '../../utils/actions/actions'; export declare const enum UMLContainerActionTypes { APPEND = "@@element/container/APPEND", REMOVE = "@@element/container/REMOVE" } export type UMLContainerActions = AppendAction | RemoveAction; export type AppendAction = Action & { payload: { ids: string[]; owner: string; }; }; export type RemoveAction = Action & { payload: { ids: string[]; }; };