import React, { ReactNode } from 'react'; import { TCardBody } from './CardBody'; import { TCardFooter } from './CardFooter'; import { TCardHeader } from './CardHeader'; import { TCardTitle } from './CardTitle'; export declare type TCard = { border?: boolean; children?: ReactNode; className?: string; custom?: boolean; size?: 'sm' | 'md' | 'lg'; }; declare type CardComponent = React.ForwardRefExoticComponent> & { Body: React.ForwardRefExoticComponent>; Footer: React.ForwardRefExoticComponent>; Header: React.ForwardRefExoticComponent>; Title: React.ForwardRefExoticComponent>; }; export declare const Card: CardComponent; export default Card;