import{ErrorHandler,ModuleWithProviders,PlatformRef,StaticProvider}from'@angular/core';exportdeclareconstINTERNAL_BROWSER_PLATFORM_PROVIDERS:StaticProvider[];/** * @security Replacing built-in sanitization providers exposes the application to XSS risks. * Attacker-controlled data introduced by an unsanitized provider could expose your * application to XSS risks. For more detail, see the [Security Guide](http://g.co/ng/security). * @experimental */exportdeclareconstBROWSER_SANITIZATION_PROVIDERS:StaticProvider[];/** * @stable */exportdeclareconstplatformBrowser:(extraProviders?:StaticProvider[])=>PlatformRef;exportdeclarefunctioninitDomAdapter():void;exportdeclarefunctionerrorHandler():ErrorHandler;exportdeclarefunction_document():any;/** * The ng module for the browser. * * @stable */exportdeclareclassBrowserModule{constructor(parentModule:BrowserModule);/** * Configures a browser-based application to transition from a server-rendered app, if * one is present on the page. The specified parameters must include an application id, * which must match between the client and server applications. * * @experimental */staticwithServerTransition(params:{appId:string;}):ModuleWithProviders;}