import { Grid } from "../../grid";
interface Props {
    value: string;
    columns: string[];
    onCellDbClick?: (ev: MouseEvent, row: string, col: string) => void;
    onCellMouseDown?: (ev: MouseEvent, row: string, col: string) => void;
    onCellMouseMove?: (ev: MouseEvent, row: string, col: string) => void;
    onCellMouseUp?: (ev: MouseEvent, row: string, col: string) => void;
    onCellFillerMouseDown?: (ev: MouseEvent, row: string, col: string) => void;
    baseHeight: number;
    grid: Grid;
}
declare const _default: (props: Omit<Props, "grid">) => JSX.Element;
export default _default;
