import { FC, ComponentProps } from 'react'; export interface TextProps extends Omit, 'onClick'> { title?: string; tipText?: string; count?: number | string; countPrefix?: string; countUnit?: string; countColor?: string; icon?: string; iconColor?: string; bgColor?: string; iconShape?: string; theme: string; bgGradient?: boolean; } export declare const DashboardCard: FC; export default DashboardCard;