import React from "react"; declare type IProps = { x: number; y: number; style: React.CSSProperties; children: React.ReactNode; hasError: boolean; isSelectable: boolean; borderRightColor?: string; isReadonly: boolean; }; /** * This component is in charge of the mouse handlers on the cell. * It also attaches the invalid indicator */ export declare const CellWrapper: React.ForwardRefExoticComponent>; export {};