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 TableFooterSlots { [key: string]: React.ComponentType; Root: React.ComponentType; } export interface TableFooterProps extends SlotPropsConfig { children?: React.ReactNode; size?: SizeProp; color?: ColorProp; sx?: SxProps; style?: StyleProp; testID?: string; } declare const TableFooter: React.NamedExoticComponent; export { TableFooter }; //# sourceMappingURL=TableFooter.d.ts.map