import { ReactNode } from "react"; import { BoxProps } from "./Box"; export declare type CardProps = { boxShadow?: BoxProps["boxShadow"]; borderRadius?: BoxProps["borderRadius"]; children?: ReactNode; }; export declare const Card: ({ boxShadow, borderRadius, children, }: CardProps) => import("@emotion/react/jsx-runtime").JSX.Element;