import React from 'react'; import { ViewStyle } from 'react-native'; import { TableBody } from './TableBody'; import { TableCell } from './TableCell'; import { TableFooter } from './TableFooter'; import { TableHead } from './TableHead'; import { TablePagination } from './TablePagination'; import { TableRow } from './TableRow'; import { TableTitle } from './TableTitle'; export interface TableProps { children: React.ReactNode; style?: ViewStyle; } export declare const TableDefaultProps: {}; type TableType = React.ComponentType & { Body: typeof TableBody; Cell: typeof TableCell; Footer: typeof TableFooter; Head: typeof TableHead; Pagination: typeof TablePagination; Row: typeof TableRow; Title: typeof TableTitle; }; /** * # 🏓 Table * * Data tables allow displaying sets of data. * */ export declare const Table: TableType; export {};