import { FC } from 'react'; import type { CardProps as AntdCardProps } from 'tntd/lib/card'; export interface CardProps extends AntdCardProps { theme?: 'default' | 'style1' | 'style2'; } export declare const Card: FC; export default Card;