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 TableContainerSlots { [key: string]: React.ComponentType; Root: React.ComponentType; } export interface TableContainerProps extends SlotPropsConfig { children?: React.ReactNode; /** If true, enables horizontal scrolling. */ horizontal?: boolean; size?: SizeProp; color?: ColorProp; sx?: SxProps; style?: StyleProp; testID?: string; } declare const TableContainer: React.NamedExoticComponent; export { TableContainer }; //# sourceMappingURL=TableContainer.d.ts.map