import { ReactNode } from 'react'; declare type IconListItem = { icon?: any; content: ReactNode; }; declare type IconListProps = { items: IconListItem[]; bullet?: ReactNode; bulletColor?: any; }; export default function IconList({ items, bullet, bulletColor }: IconListProps): JSX.Element; export {};