1import { ComponentType } from 'react'; 2import { TableTextProps } from '../primitives/Table'; 3import { TextProps } from '../primitives/Text'; 4import { ViewProps } from '../primitives/View'; 5export declare const Table: ComponentType<ViewProps>; 6export declare const THead: ComponentType<ViewProps>; 7export declare const TBody: ComponentType<ViewProps>; 8export declare const TFoot: ComponentType<ViewProps>; 9export declare const TH: ComponentType<TableTextProps>; 10export declare const TR: ComponentType<ViewProps>; 11export declare const TD: ComponentType<TableTextProps>; 12export declare const Caption: ComponentType<TextProps>; 13