///
import { SxProps } from '@mui/material';
import type { Theme } from 'src/theme/muiTheme';
export declare function Card({ children, width, height, onClick, elevation, borderColor, borderRadius, className, sx, }: {
children?: any;
width?: string;
height?: string;
onClick?: () => void;
elevation?: number;
borderColor?: string;
borderRadius?: string;
className?: string;
sx?: SxProps;
}): JSX.Element;
export default Card;