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 TableSortLabelSlots { [key: string]: React.ComponentType; Root: React.ComponentType; } export interface TableSortLabelProps extends SlotPropsConfig { /** Whether the sort indicator is active */ active: boolean; /** Current sort direction */ direction?: 'asc' | 'desc'; /** Hide the sort icon when the column is not active */ hideSortIcon?: boolean; onPress?: () => void; children?: React.ReactNode; size?: SizeProp; color?: ColorProp; sx?: SxProps; style?: StyleProp; testID?: string; accessibilityLabel?: string; } declare const TableSortLabel: React.NamedExoticComponent; export { TableSortLabel }; //# sourceMappingURL=TableSortLabel.d.ts.map