import React, { ReactNode } from 'react'; type ItemCardProps = { description?: string; tags?: string[]; title: string; /** @deprecated Use subtitle instead */ type?: string; subtitle?: ReactNode; label: string; onClick?: () => void; href?: string; }; /** * This card type has been deprecated. Instead use plain Material UI Card and helpers * where appropriate. * * @example * ``` * * * * * * Some text * * * * * * ``` * * @deprecated Use plain Material UI `` and composable helpers instead. * @see https://v4.mui.com/components/cards/ */ export declare function ItemCard(props: ItemCardProps): React.JSX.Element; export {};