import { FC, ReactNode, PropsWithChildren } from 'react'; import './style'; interface ICard { title: string; contentTitle?: ReactNode; contentStatus?: any; className?: string; } declare const IglooCard: FC>; export default IglooCard;