export type CardProps = { /** * The content to render within the element. */ children?: React.ReactNode | undefined; /** * A class property to attach to the element. * * @see {@link !Element.className} */ className?: string | undefined; /** * */ variant?: "hero" | "bottomless" | undefined; }; /** * A Card is a grouping element that renders its contents within a box that is visually distinct * from the rest of the page. * * ![Card](./screenshots/card.png) * * @param props * @see {@link CardTitle} * @see {@link CardFooter} */ export declare const Card: (props: CardProps) => import("react").JSX.Element; //# sourceMappingURL=Card.d.ts.map