import { FC, PropsWithChildren } from 'react'; import './style'; interface ICardGroupProps { className?: string; style?: { [key: string]: string; }; subHeading?: string | any; subStatus?: any; } declare const IglooCardGroup: FC>; export default IglooCardGroup;