import type { ReactElement, PropsWithChildren } from "react"; import type { IAppContext } from "../../types/index.d.mts"; /** * Корневой компонент приложения, используемый для формирования контекста @returns {ReactElement} */ declare const RenderContext: ({ children, isSSR, mode, }: PropsWithChildren) => ReactElement; export { RenderContext, };