import * as React from "react"; import CardGroup from "./CardGroup"; type Props = { color?: string; } & (React.ButtonHTMLAttributes | React.HTMLAttributes); declare function Card({ color, ...rest }: Props): import("react/jsx-runtime").JSX.Element; declare namespace Card { var Group: typeof CardGroup; } export default Card;