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<HTMLElement>;
    compact?: boolean;
}
declare const CardContainer: FC<CardProps>;
export default CardContainer;
