import { IconType } from '../Icon'; import { color } from '../utils/propTypes/color'; interface IListIconProps { readonly name: IconType; readonly iconColor?: color; readonly backgroundColor?: color; } declare const ListIcon: ({ name, backgroundColor, iconColor, }: IListIconProps) => JSX.Element; export default ListIcon;