import type { TemplateElement } from "./Sidebar"; export type CellAction = { type: "grid"; cell: Cell; action: "resize" | "drag"; gridId?: number | string; } | { type: "flex"; el: TemplateElement; props: Record; } | { type: "section"; component: "grid" | "flex"; }; export type Cell = { col: number; colSpan: number; row: number; rowSpan: number; id: number; };