import React from "react"; import { CardHeader, CardHeaderProps } from "./CardHeader"; import { CardBody, CardBodyProps } from "./CardBody"; import { CardFooter, CardFooterProps } from "./CardFooter"; import type { variant, color, shadow, className, children } from "../../types/components/card"; export interface CardProps extends React.ComponentProps<"div"> { variant?: variant; color?: color; shadow?: shadow; className?: className; children: children; } declare const Card: React.ForwardRefExoticComponent & React.RefAttributes>; export type { CardHeaderProps, CardBodyProps, CardFooterProps }; export { Card, CardHeader, CardBody, CardFooter }; declare const _default: React.ForwardRefExoticComponent & React.RefAttributes> & { Header: React.ForwardRefExoticComponent & React.RefAttributes>; Body: React.ForwardRefExoticComponent & React.RefAttributes>; Footer: React.ForwardRefExoticComponent & React.RefAttributes>; }; export default _default; //# sourceMappingURL=index.d.ts.map