/// import { CardProps } from "antd"; import { ShadowSize } from "../types"; export declare type Props = { shadowSize?: ShadowSize; } & CardProps; declare const Card: ({ children, style, bodyStyle, shadowSize, ...props }: Props) => JSX.Element; export default Card;