import { OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import 'rxjs/add/operator/take';
import { EzfaService } from '../../ezfa.service';
import { BaseComponent } from '../base.component';
export declare class IndexRouteComponent extends BaseComponent implements OnInit {
    route: ActivatedRoute;
    constructor(route: ActivatedRoute, service: EzfaService);
    ngOnInit(): Promise<boolean>;
}
