import React from 'react'; import { TwStyle } from 'twin.macro'; interface CellProps { type: string; value: any; rawValue: any; formattedValue?: any; categoryColor?: string | TwStyle; style?: {}; status?: string; isNearRightEdge?: boolean; isNearBottomEdge?: boolean; isFirstColumn: boolean; isExtraBlankRow: boolean; hasStatusIndicator?: boolean; background?: string; isEditable: boolean; onCellChange?: (value: any) => void; onRowDelete?: () => void; isFocused: boolean; onFocusChange: (value: [number, number] | null) => void; onMouseEnter?: Function; } export declare const Cell: React.NamedExoticComponent; export {};