import type { FC } from 'react'; import type { IconTypes, Color } from '../../../../avocado-icons'; type Variant = 'success' | 'info' | 'warning' | 'error' | 'neutral'; type HeaderStatusColor = Extract; interface DataCardProps { /** Render content dataCard */ children?: React.ReactNode | string; /** Overwrite className */ className?: string; /** Render the description */ description?: string; /** Set hasTopBar */ hasTopBar?: boolean; /** Header status color */ headerStatusColor?: HeaderStatusColor; /** Icon of the DataCard */ icon?: IconTypes; /** Title of the DataCard */ title: string; /** Use the variant of the DataCard */ variant: Variant; /** Set content */ topContent?: React.ReactNode | string; } declare const DataCard: FC; export default DataCard;