import { ReactNode } from 'react'; export declare const FullScreenedCtx: import('react').Context; export declare const FullScreenedToggleCtx: import('react').Context<(() => void) | null>; export declare const OnCloseCtx: import('react').Context<(() => void) | null>; export declare const CtxsProviders: ({ children, fullScreened, toggleFullScreen, onClose, }: { children: ReactNode; fullScreened: boolean | null; toggleFullScreen: () => void; onClose: (() => void) | undefined; }) => import("react/jsx-runtime").JSX.Element;