import React, { ElementType, FC } from 'react'; import { SxProps } from '@mui/material'; interface CardMediaProps { height?: number; sx?: SxProps; image?: string; title?: string; component?: ElementType; src?: string; className?: string; children?: React.ReactNode; } export declare const CardMedia: FC; export {};