import { OnInit, ElementRef } from '@angular/core'; import { CfCoreComponent } from '../core/core.component'; import { BreadCrumbModel } from '../../models/bread-crumb/bread-crumb.model'; import { BreadCrumbStylingModel } from '../../models/bread-crumb/bread-crumb-styling.model'; import { TemplateService } from '../../services/template-service/template.service'; import { Router } from '@angular/router'; /** * This component refers to a Weather app. */ export declare class CfBreadCrumbComponent extends CfCoreComponent implements OnInit { elementRef: ElementRef; private router; links: any[]; iconName: string; properties: BreadCrumbModel; styling: BreadCrumbStylingModel; constructor(elementRef: ElementRef, /**@hidden */ templateService: TemplateService, router: Router); /** *

This method is called when initializing the component.

*/ ngOnInit(): void; removeAfter(alias: any): void; }