/// import { Animated } from 'react-native'; type AppItemState = { opacity: Animated.Value; width: Animated.Value; transform: Animated.ValueXY; id: string; screen: string; title?: string; icon?: string; tintColor?: string; backgroundColor?: string; }; export declare function AppItem(props: AppItemState & { onPress?: any; }): JSX.Element; export {};