import type { QRL, Signal } from "@builder.io/qwik"; import type { CellAction } from "./Cell"; type Props = { grid: { columns: number; rows: number; gap: number; }; selectedCell: Signal; cellId: Signal; id: number; onDropSection$: QRL<(type: "grid" | "flex") => void>; }; declare const _default: import("@builder.io/qwik").Component; export default _default;