import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { ColorProp, SxProps, SlotPropsConfig } from '../../types/shared'; import type { TableSize, TablePaddingVariant } from './TableContext'; export interface TableSlots { [key: string]: React.ComponentType; Root: React.ComponentType; } export interface TableProps extends SlotPropsConfig { children?: React.ReactNode; /** * If true, the table head rows will be "sticky". * // RN-DEVIATION: CSS position:sticky unavailable in RN — implemented via * position:'absolute' on TableHead + matching paddingTop on TableBody. */ stickyHeader?: boolean; padding?: TablePaddingVariant; size?: TableSize; color?: ColorProp; sx?: SxProps; style?: StyleProp; testID?: string; } declare const Table: React.NamedExoticComponent; export { Table }; //# sourceMappingURL=Table.d.ts.map