import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
import { THEME_APPEARANCE } from './Theme';
export interface TableViewInterface {
    children?: React.ReactNode;
    appearance?: 'auto' | 'dark' | 'light' | string;
    customAppearances?: {
        [key: string]: THEME_APPEARANCE;
    };
    style?: StyleProp<ViewStyle>;
}
declare const TableView: React.FC<TableViewInterface>;
export default TableView;
