import * as React from 'react'; import { CardProps as AntCardProps } from 'antd'; export interface Item { label: string; key: string; } export interface MenuProps { items: Item[]; onClick?: (itemKey: any) => void; } export interface Button { label: string; onClick?: () => void; } export interface CardProps extends AntCardProps { className?: string; description?: string; descriptionTooltip?: string; icon?: string; title?: string; titleTooltip?: string; titleTooltipIcon?: React.ReactNode; dropdown?: MenuProps; customDropdown?: React.ReactNode; action?: Button; } /** * @deprecated */ export declare const Card: React.FC>;