import { Component } from 'react'; import { StyleProp, TextStyle, ViewStyle } from 'react-native'; declare type RowProps = { data: any[]; widthArr?: number[]; height?: number; style?: StyleProp; textStyle?: StyleProp; flexArr?: number[]; testID?: string; }; export declare class Row extends Component { render(): JSX.Element | null; } declare type RowsProps = { data: any[]; widthArr: number[]; style: StyleProp; textStyle: StyleProp; flexArr: number[]; heightArr: number[]; testID?: string; }; export declare class Rows extends Component { render(): JSX.Element | null; } export {};