import { IViewProps } from '../View'; declare const GroupedCardList: ({ title, children, ...rest }: IGroupedCardListProps) => JSX.Element; interface IGroupedCardListProps extends IViewProps { title: string; } export default GroupedCardList;