import React from "react"; import { type StyleProp, type TextStyle, type ViewStyle } from "react-native"; type Props = { activeOpacity?: number; title?: string | Element; subtitle?: string | Element; titleNumberOfLines?: number; containerStyle?: StyleProp; contentStyle?: StyleProp; titleStyle?: StyleProp; subtitleStyle?: StyleProp; rightStyle?: StyleProp; /** * If true, disable all interactions for this component. */ touchDisabled?: boolean; onPress?(): void; onLongPress?(): void; right?(): JSX.Element | undefined; }; export declare const SimpleItem: (props: Props) => React.JSX.Element; export default SimpleItem; //# sourceMappingURL=SimpleItem.d.ts.map