///
import { SxProps } from '@mui/material';
import { Theme } from '../../../theme/muiTheme';
import { OptimizeImageProps } from '../../image';
export interface Props extends OptimizeImageProps {
title: string | JSX.Element;
description: string | JSX.Element;
imgSrc: string;
sx?: SxProps;
}
declare const CreditClassCard: ({ title, description, imgSrc, apiServerUrl, imageStorageBaseUrl, sx, }: Props) => JSX.Element;
export { CreditClassCard };