import { Component } from 'react'; import { ViewStyle, StyleProp, TextStyle } from 'react-native'; declare type CellProps = { data: any; width?: number; height?: number; style?: StyleProp; textStyle?: StyleProp; flex?: number; borderStyle?: ViewStyle; testID?: string; }; export declare class Cell extends Component { render(): JSX.Element; } export {};