UNPKG

444 BTypeScriptView Raw
1import InternalCard from './Card';
2import Grid from './Grid';
3import Meta from './Meta';
4export type { CardProps, CardTabListType } from './Card';
5export type { CardGridProps } from './Grid';
6export type { CardMetaProps } from './Meta';
7type InternalCardType = typeof InternalCard;
8export interface CardInterface extends InternalCardType {
9 Grid: typeof Grid;
10 Meta: typeof Meta;
11}
12declare const Card: CardInterface;
13export default Card;