In the component file, outside component class definition, declare rootVar, and it will become available in the component constructor:
declare var rootVar: any;
then
@Component(...)
export class MyComponent {
private a: any;
constructor() {
this.a = rootVar;
}
}