import { LayoutItem } from "@omnia/fx-models"; export interface AddItemToLayoutPayLoad { item: LayoutItem; containerId: string; siblingId: string; postInsert: boolean; } export interface DeleteItemFromLayoutPayLoad { item: LayoutItem; containerId: string; }