antd
Version:
An enterprise-class UI design language and React components implementation
14 lines (13 loc) • 476 B
TypeScript
import InternalCard from './Card';
import CardGrid from './CardGrid';
import CardMeta from './CardMeta';
export type { CardProps, CardTabListType } from './Card';
export type { CardGridProps } from './CardGrid';
export type { CardMetaProps } from './CardMeta';
type InternalCardType = typeof InternalCard;
export interface CardInterface extends InternalCardType {
Grid: typeof CardGrid;
Meta: typeof CardMeta;
}
declare const Card: CardInterface;
export default Card;