import React from 'react'; import { TooltipProps } from 'antd/lib/tooltip'; interface ISiderData { label: string; value: string | number; } interface IDCard { prefixCls?: string; title?: string; tooltip?: string | React.ReactNode; tooltipProps?: TooltipProps; value?: number | string; rightHeader?: React.ReactNode; style?: React.CSSProperties; icon?: React.ReactNode; subTitle?: string; siderData?: ISiderData[]; showProgress?: boolean; showDynamic?: boolean; progressLabel?: string; progressPercent?: number; footerDom?: React.ReactNode; theme?: 'default' | 'gray' | 'success' | 'error' | 'warning' | 'info'; } declare function Card(props: IDCard): JSX.Element; export default Card;