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