import type { SxProps } from '@mui/material'; import React, { FC, MouseEventHandler } from 'react'; export interface CardProps { children?: React.ReactNode; sx?: SxProps; backgroundImage: string; gradientColor: string; onClick?: MouseEventHandler; compact?: boolean; } declare const CardContainer: FC; export default CardContainer;