import { ReactElement } from 'react'; import PropTypes from 'prop-types'; export interface CardProps { children: ReactElement | ReactElement[] | string | any; className?: string; [props: string]: any; } export declare const Card: { ({ children, className, ...props }: CardProps): import("@emotion/react/jsx-runtime").JSX.Element; propTypes: { className: PropTypes.Requireable; }; };