1import { ClassAttributes, ComponentProps, ComponentType } from 'react'; 2import Text from './Text'; 3declare type NativeTextProps = ComponentProps<typeof Text> & ClassAttributes<typeof Text>; 4export declare type TableTextProps = NativeTextProps & { 5 /** @platform web */ 6 colSpan?: number | string; 7 /** @platform web */ 8 rowSpan?: number | string; 9}; 10export declare const TableText: ComponentType<TableTextProps>; 11export {}; 12