import React from 'react'; import { ViewStyle } from 'react-native'; export interface TableBodyProps { children: React.ReactNode; style?: ViewStyle; } export declare const TableBodyDefaultProps: {}; /** * # 🏓 TableBody * * Data tables allow displaying sets of data. * */ export declare const TableBody: React.ComponentType;