import React from 'react'; import type { StyleProp, ViewStyle, TextStyle } from 'react-native'; import type { ColorProp, SxProps, SlotPropsConfig } from '../../types/shared'; import type { TablePaddingVariant, TableSize, TableVariant } from './TableContext'; export interface TableCellSlots { [key: string]: React.ComponentType; Root: React.ComponentType; } export interface TableCellProps extends SlotPropsConfig { children?: React.ReactNode; align?: 'inherit' | 'left' | 'center' | 'right' | 'justify'; padding?: TablePaddingVariant; size?: TableSize; sortDirection?: 'asc' | 'desc' | false; variant?: TableVariant; color?: ColorProp; sx?: SxProps; style?: StyleProp; textStyle?: StyleProp; testID?: string; } declare const TableCell: React.NamedExoticComponent; export { TableCell }; //# sourceMappingURL=TableCell.d.ts.map