import { HTMLAttributes } from "react";
export { CardActions } from "./Actions";
interface Props {
/**
* The variant of the card.
* @default "raised"
*/
variant?: "raised" | "outlined" | "flat";
}
export declare function Card({ children, className, variant, ...props }: HTMLAttributes & Props): import("react/jsx-runtime").JSX.Element;