1import { ClassAttributes, ComponentProps, ComponentType } from 'react';
2import Text from './Text';
3type NativeTextProps = ComponentProps<typeof Text> & ClassAttributes<typeof Text>;
4export 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//# sourceMappingURL=Table.d.ts.map