import React from "react"; interface CardMediaProps { className?: string; image?: string; width?: number; height?: number; children?: any; [x: string]: any; } export declare const CardMedia: ({ className, image, width, height, children, ...props }: CardMediaProps) => React.JSX.Element; export {};