import type { CardVariants } from "@heroui/styles";
import type { ComponentPropsWithRef } from "react";
interface CardRootProps extends ComponentPropsWithRef<"div">, CardVariants {
}
declare const CardRoot: ({ children, className, variant, ...props }: CardRootProps) => import("react/jsx-runtime").JSX.Element;
interface CardHeaderProps extends ComponentPropsWithRef<"div"> {
}
declare const CardHeader: ({ className, ...props }: CardHeaderProps) => import("react/jsx-runtime").JSX.Element;
interface CardTitleProps extends ComponentPropsWithRef<"h3"> {
}
declare const CardTitle: ({ children, className, ...props }: CardTitleProps) => import("react/jsx-runtime").JSX.Element;
interface CardDescriptionProps extends ComponentPropsWithRef<"p"> {
}
declare const CardDescription: ({ children, className, ...props }: CardDescriptionProps) => import("react/jsx-runtime").JSX.Element;
interface CardContentProps extends ComponentPropsWithRef<"div"> {
}
declare const CardContent: ({ className, ...props }: CardContentProps) => import("react/jsx-runtime").JSX.Element;
interface CardFooterProps extends ComponentPropsWithRef<"div"> {
}
declare const CardFooter: ({ className, ...props }: CardFooterProps) => import("react/jsx-runtime").JSX.Element;
export { CardRoot, CardHeader, CardTitle, CardDescription, CardContent, CardFooter };
export type { CardRootProps, CardHeaderProps, CardTitleProps, CardDescriptionProps, CardContentProps, CardFooterProps, };
