import type { ComponentProps } from "react"; import { CardContent, CardDescription, CardFooter, CardHeader, CardRoot, CardTitle } from "./card"; export declare const Card: (({ children, className, variant, ...props }: import("./card").CardRootProps & Omit>) => import("react/jsx-runtime").JSX.Element) & { Root: ({ children, className, variant, ...props }: import("./card").CardRootProps & Omit>) => import("react/jsx-runtime").JSX.Element; Header: ({ className, ...props }: import("./card").CardHeaderProps & Omit>) => import("react/jsx-runtime").JSX.Element; Title: ({ children, className, ...props }: import("./card").CardTitleProps & Omit>) => import("react/jsx-runtime").JSX.Element; Description: ({ children, className, ...props }: import("./card").CardDescriptionProps & Omit>) => import("react/jsx-runtime").JSX.Element; Content: ({ className, ...props }: import("./card").CardContentProps & Omit>) => import("react/jsx-runtime").JSX.Element; Footer: ({ className, ...props }: import("./card").CardFooterProps & Omit>) => import("react/jsx-runtime").JSX.Element; }; export type Card = { Props: ComponentProps; RootProps: ComponentProps; HeaderProps: ComponentProps; TitleProps: ComponentProps; DescriptionProps: ComponentProps; ContentProps: ComponentProps; FooterProps: ComponentProps; }; export { CardRoot, CardHeader, CardTitle, CardDescription, CardContent, CardFooter }; export type { CardRootProps, CardRootProps as CardProps, CardHeaderProps, CardTitleProps, CardDescriptionProps, CardContentProps, CardFooterProps, } from "./card"; export { cardVariants } from "@heroui/styles"; export type { CardVariants } from "@heroui/styles";