import React from 'react'; import type { ComponentProps } from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; import type Icon from '../../Icon'; export interface ActionItemProps { testID?: string; title: string; icon: ComponentProps['icon']; onPress?: () => void; style?: StyleProp; key?: string; } interface AnimatedActionItemProps extends ActionItemProps { index: number; active?: boolean; } declare const ActionItem: ({ icon, title, onPress, style, testID, index, active, }: AnimatedActionItemProps) => React.JSX.Element; export default ActionItem;