import { IDevelopmentHostingEnvironment, DevelopmentHostingInfo } from "./models/DevelopmentEnvironment"; export declare function getHosting(): { disableAutoReload: boolean; hmr: boolean; port: number; } & DevelopmentHostingInfo; export declare class DevelopmentHostingEnvironment implements IDevelopmentHostingEnvironment { private localOverride; constructor(localOverride: boolean); use: (hostingInfo: DevelopmentHostingInfo) => void; private static getServerManifests; private static clearState; private static ServerSubscription; }