import * as React from "react"; import { CardPreview, type CardProps as FluentCardProps } from "@fluentui/react-components"; export interface CardProps extends FluentCardProps { variant?: "default" | "outline" | "elevated" | "filled"; } 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, CardPreview, }; //# sourceMappingURL=card.d.ts.map