import { Component } from 'react'; export interface SimpleListItemProps { /** id for the item. */ itemId?: number | string; /** Content rendered inside the SimpleList item */ children?: React.ReactNode; /** Additional classes added to the SimpleList
  • */ className?: string; /** Component type of the SimpleList item */ component?: 'button' | 'a'; /** Additional classes added to the SimpleList or