import * as React from 'react'; declare function Card({ className, size, ref, ...props }: React.ComponentProps<'div'> & { size?: 'default' | 'sm'; }): React.JSX.Element; declare function CardHeader({ className, ref, ...props }: React.ComponentProps<'div'>): React.JSX.Element; declare function CardTitle({ className, ref, ...props }: React.ComponentProps<'div'>): React.JSX.Element; declare function CardDescription({ className, ref, ...props }: React.ComponentProps<'div'>): React.JSX.Element; declare function CardAction({ className, ref, ...props }: React.ComponentProps<'div'>): React.JSX.Element; declare function CardContent({ className, ref, ...props }: React.ComponentProps<'div'>): React.JSX.Element; declare function CardFooter({ className, ref, ...props }: React.ComponentProps<'div'>): React.JSX.Element; type CardProps = React.ComponentProps; type CardHeaderProps = React.ComponentProps; type CardTitleProps = React.ComponentProps; type CardDescriptionProps = React.ComponentProps; type CardActionProps = React.ComponentProps; type CardContentProps = React.ComponentProps; type CardFooterProps = React.ComponentProps; export { Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps };