import * as React from 'react'; import { ReactElement } from 'react'; type CardProps = React.ComponentProps<"div">; declare function Card({ className, ...props }: CardProps): ReactElement; type CardHeaderProps = React.ComponentProps<"div">; declare function CardHeader({ className, ...props }: CardHeaderProps): ReactElement; type CardTitleProps = React.ComponentProps<"div">; declare function CardTitle({ className, ...props }: CardTitleProps): ReactElement; type CardDescriptionProps = React.ComponentProps<"div">; declare function CardDescription({ className, ...props }: CardDescriptionProps): ReactElement; type CardActionProps = React.ComponentProps<"div">; declare function CardAction({ className, ...props }: CardActionProps): ReactElement; type CardContentProps = React.ComponentProps<"div">; declare function CardContent({ className, ...props }: CardContentProps): ReactElement; type CardFooterProps = React.ComponentProps<"div">; declare function CardFooter({ className, ...props }: CardFooterProps): ReactElement; export { Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps };