import React, { FC } from 'react'; import { SxProps } from '@mui/material'; interface CardProps { sx?: SxProps; raised?: boolean; className?: string; children?: React.ReactNode; } export declare const Card: FC; export {};