import { type JSX, type ReactNode } from "react";
import type { RowCellLayout } from "../+types";
export interface CellProps {
    readonly cell: RowCellLayout<any>;
}
export declare const Cell: (props: Omit<JSX.IntrinsicElements["div"], "children"> & CellProps) => ReactNode;
