import { ErrorHandler, PlatformRef, Provider } from '@angular/core'; import { AnimationDriver } from '../src/dom/animation_driver'; export declare const INTERNAL_BROWSER_PLATFORM_PROVIDERS: Provider[]; /** * @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 */ export declare const BROWSER_SANITIZATION_PROVIDERS: Array; /** * @stable */ export declare const platformBrowser: (extraProviders?: Provider[]) => PlatformRef; export declare function initDomAdapter(): void; export declare function errorHandler(): ErrorHandler; export declare function _document(): any; export declare function _resolveDefaultAnimationDriver(): AnimationDriver; /** * The ng module for the browser. * * @stable */ export declare class BrowserModule { constructor(parentModule: BrowserModule); }