import React, { Dispatch, SetStateAction } from 'react'; import { PropsWithChildrenAndClassName } from '../../types'; export declare const MediaContext: React.Context<{ setOverlayContentHeight: Dispatch>; setShowOverlay: Dispatch>; videoCompletedCallback: () => void; videoClickCallback: () => void; setVideoRef: Dispatch>; videoRef?: React.RefObject; initiallyActiveOverlay?: boolean; }>; /** * **JSON-format type: media** * * A container for an image or some other graphic. * * Children: `[ *]` * * @param children * @param className * @param props * @constructor */ declare function Media({ children, className, ...props }: PropsWithChildrenAndClassName): import("react/jsx-runtime").JSX.Element; export { Media };