import './ListItem.css'; import React from 'react'; import { IconType } from '../Icon2/Icon'; export type ListItemProps = { content: string | React.ReactNode; description?: string | React.ReactNode; onClick?: () => void; style?: React.CSSProperties; className?: string; icon?: IconType; testId?: string; }; declare const ListItem: (props: ListItemProps) => React.JSX.Element; export default ListItem;