import { type HTMLAttributes } from "react";
import type { ColumnSeparatorType } from "./Grid";
export interface CellProps extends HTMLAttributes {
isSelected?: boolean;
isEditable?: boolean;
separator?: ColumnSeparatorType;
}
/** Cell frame used for creating custom cells and editors */
export declare const CellFrame: import("react").ForwardRefExoticComponent>;