import Grid from './Grid';
import Meta from './Meta';
import InternalCard from './Card';
export { CardGridProps } from './Grid';
export { CardMetaProps } from './Meta';
export { CardProps, CardTabListType } from './Card';
declare type InternalCardType = typeof InternalCard;
export interface CardInterface extends InternalCardType {
    Grid: typeof Grid;
    Meta: typeof Meta;
}
declare const Card: CardInterface;
export default Card;
