import React from 'react'; import { CardInterface as AntCardProps } from 'antd/es/card'; import FormCard from './FormCard'; export interface CardInterface extends React.FC { FormCard: typeof FormCard; } declare const Card: CardInterface; export default Card; export * from 'antd/es/card';