import { VideoAttributes } from './CustomVideoPlayer';
export interface ImageContentContainerProps {
    url: string;
    title: string;
    subTitle: string;
    placeholderImage?: string;
    height?: string;
    videoAttributes?: VideoAttributes;
}
declare const MediaContentContainer: ({ url, title, subTitle, placeholderImage, height, videoAttributes, }: ImageContentContainerProps) => import("react/jsx-runtime").JSX.Element;
export default MediaContentContainer;
