import { FunctionComponent, ReactElement } from 'react'; declare type DashboardCardProps = { title?: string; isHalf?: boolean; noPadding?: boolean; id?: string; testId?: string; containerClass?: string; children: ReactElement; }; declare const DashboardCard: FunctionComponent; export default DashboardCard;