import * as React from 'react'; export interface CardProps extends React.HTMLAttributes { variant?: 'elevated' | 'filled' | 'outlined'; size?: 'default' | 'compact' | 'flush'; stripColor?: string; } declare const Card: React.ForwardRefExoticComponent>; declare const CardHeader: React.ForwardRefExoticComponent & React.RefAttributes>; declare const CardTitle: React.ForwardRefExoticComponent & React.RefAttributes>; declare const CardDescription: React.ForwardRefExoticComponent & React.RefAttributes>; declare const CardContent: React.ForwardRefExoticComponent & React.RefAttributes>; declare const CardFooter: React.ForwardRefExoticComponent & React.RefAttributes>; export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent };