import type { Signal } from "@builder.io/qwik"; import type { QRL } from "@builder.io/qwik"; import type { Cell, CellAction } from "./Cell"; type Props = { cell: Cell; onStartResize$: QRL<() => void>; onDelete$: QRL<() => void>; onDrag$: QRL<() => void>; onMoveEnd$: QRL<() => void>; selectedCell: Signal; }; export declare const Tile: import("@builder.io/qwik").Component; export {};