/// import React from 'react'; import { FC, PropsWithChildren } from "react"; interface IServerContext { response: Response | null; isServer: boolean; basename?: string; } /** * Server application context */ declare const ServerContext: React.Context; interface IServerProvider { context: IServerContext; } /** * Server application context provider * @constructor */ declare const ServerProvider: FC>; declare const useServerContext: () => IServerContext; export { IServerContext, ServerContext, ServerProvider, useServerContext };