import * as React from 'react'; import { ThemeReactorStyleSheet } from '../common'; export const styleSheet: ThemeReactorStyleSheet; export interface CardMediaProps { /** * Useful to extend the style applied to components. */ classes?: any, /** * @ignore */ className?: string, } export default function CardMedia(props: CardMediaProps): JSX.Element;