/** * A list of providers. To use the router, you must add this to your application. * * ``` * import {Component} from '@angular/core'; * import { * ROUTER_DIRECTIVES, * ROUTER_PROVIDERS, * Routes * } from '@angular/router'; * * @Component({directives: [ROUTER_DIRECTIVES]}) * @Routes([ * {...}, * ]) * class AppCmp { * // ... * } * * bootstrap(AppCmp, [ROUTER_PROVIDERS]); * ``` */ export declare const ROUTER_PROVIDERS: any[];