import React from 'react'; import { ViewStyle } from 'react-native'; export interface TableRowProps { /** * If true, the table row will shade on hover. */ hover?: boolean; /** * If true, the table row will have the selected shading. */ selected?: boolean; children: React.ReactNode; style?: ViewStyle; } export declare const TableRowDefaultProps: { hover: boolean; selected: boolean; }; /** * # 🏓 TableRow * * Data tables allow displaying sets of data. * */ export declare const TableRow: React.ComponentType;