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