import * as React from 'react'; import { FlexProps } from '../layout'; import ListCardItem from './item/ListCardItem'; import ListCardSubItem from './subItem/ListCardSubItem'; export interface ListCardProps extends FlexProps { grouped?: boolean; } type SubComponents = { Item: typeof ListCardItem; SubItem: typeof ListCardSubItem; }; export declare const ListCard: React.FC & SubComponents; export default ListCard;