import React from 'react'; import { ViewStyle, TextStyle, Insets, StyleProp } from 'react-native'; import { SpacingProps } from '../../../theme/spacing'; import { TestableProps } from '../../common/test'; import { type BoxProps } from '../../common/box'; export interface ListItemProps extends SpacingProps, TestableProps, BoxProps { title?: string | React.ReactNode; description?: string | React.ReactNode; left?: React.ReactNode; right?: React.ReactNode; onPress?: () => void; disabled?: boolean; selected?: boolean; style?: StyleProp; contentStyle?: StyleProp; titleStyle?: StyleProp; descriptionStyle?: StyleProp; accessibilityLabel?: string; hitSlop?: Insets; size?: 'sm' | 'md' | 'lg'; } declare const ListItem: React.FC; export default ListItem; //# sourceMappingURL=ListItem.d.ts.map