import React, { Component, PropsWithChildren } from 'react'; import { StyleProp, ViewStyle } from 'react-native'; declare type TableProps = { style?: StyleProp; borderStyle?: ViewStyle; testID?: string; }; export declare class Table extends Component> { _renderChildren(props: PropsWithChildren): React.ReactElement<{} | { borderStyle: any; }, string | ((props: any) => React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>[] | null | undefined; render(): JSX.Element; } declare type TableWrapperProps = { style?: StyleProp; borderStyle?: ViewStyle; testID?: string; }; export declare class TableWrapper extends Component> { _renderChildren(props: PropsWithChildren): React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>[] | null | undefined; render(): JSX.Element; } export {};