import React, { FC, ComponentProps } from 'react'; import './index.less'; export interface DashboardCardProps extends Omit, 'onClick'> { title?: string; tipText?: string; count?: number | string; countPrefix?: string; countUnit?: string; countColor?: string; icon?: React.ReactNode; iconColor?: string; bgColor?: string; iconShape?: string; theme: string; bgGradient?: boolean; } export declare const DashboardCard: FC; export default DashboardCard; //# sourceMappingURL=index.d.ts.map