import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { SizeProp } from '../../tokens/size'; import type { ColorProp, SxProps, SlotPropsConfig } from '../../types/shared'; export interface TableRowSlots { [key: string]: React.ComponentType; Root: React.ComponentType; } export interface TableRowProps extends SlotPropsConfig { children?: React.ReactNode; selected?: boolean; hover?: boolean; onPress?: () => void; size?: SizeProp; color?: ColorProp; sx?: SxProps; style?: StyleProp; testID?: string; accessibilityLabel?: string; } declare const TableRow: React.NamedExoticComponent; export { TableRow }; //# sourceMappingURL=TableRow.d.ts.map