import { CardStyles } from './card.css'; import * as React from 'react'; interface CardProps extends React.ComponentPropsWithoutRef<'div'>, CardStyles { asChild?: boolean; } declare const Card: React.ForwardRefExoticComponent>; interface CardHeaderProps extends React.ComponentPropsWithoutRef<'div'>, CardStyles { asChild?: boolean; } declare const CardHeader: React.ForwardRefExoticComponent>; interface CardTitleProps extends React.ComponentPropsWithoutRef<'h3'> { asChild?: boolean; } declare const CardTitle: React.ForwardRefExoticComponent>; interface CardDescriptionProps extends React.ComponentPropsWithoutRef<'p'> { asChild?: boolean; } declare const CardDescription: React.ForwardRefExoticComponent>; interface CardContentProps extends React.ComponentPropsWithoutRef<'div'>, CardStyles { asChild?: boolean; } declare const CardContent: React.ForwardRefExoticComponent>; interface CardFooterProps extends React.ComponentPropsWithoutRef<'div'>, CardStyles { asChild?: boolean; } declare const CardFooter: React.ForwardRefExoticComponent>; interface CardDividerProps extends React.ComponentPropsWithoutRef<'hr'>, CardStyles { } declare const CardDivider: React.ForwardRefExoticComponent>; export { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter, CardDivider }; //# sourceMappingURL=card.d.ts.map