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