import { BoxProps } from "@specimen/foundation"; import { ReactNode } from "react"; interface Props extends BoxProps { children?: ReactNode; color?: "blue" | "green" | "yellow" | "red" | "orange" | "purple"; } declare const Card: (props: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default Card;