import { CSSProperties } from "react";
interface Props {
    play: boolean;
    fullScreen: boolean;
    style?: CSSProperties;
    onFullscreenChange?: (fullscreen: boolean) => void;
    children: React.ReactNode;
}
export declare function FullscreenableContainer(props: Props): import("react/jsx-runtime").JSX.Element;
export {};
