import type { ClassAttributes, ComponentProps, ComponentType } from 'react'; import { Text } from 'react-native'; type NativeTextProps = ComponentProps & ClassAttributes; export type TableTextProps = NativeTextProps & { /** @platform web */ colSpan?: number | string; /** @platform web */ rowSpan?: number | string; }; export declare const TableText: ComponentType; export {};