import { OnInit } from '@angular/core'; import { FooterConfig, FooterLink } from '../../models/footer-config.model'; import * as i0 from "@angular/core"; /** * Implements & displays copyright information and IEEE quick access links. * @class FooterComponent * @implements {OnInit} */ export declare class FooterComponent implements OnInit { /** * Input property to get the configuration information of footer copyright text and quick access links. * @type {FooterConfig} * @memberof FooterComponent */ private footerConfigInfo; set footerConfig(value: FooterConfig); get footerConfig(): FooterConfig; screenTexts: any; currentYear: number; /** * Initializes the component with default values if not provided. * It should hide the the dashboard link if the user is not signed in. * @return -returns nothing * @memberof FooterComponent */ ngOnInit(): void; /** * TrackByFunction is called for each item in the collection and return a unique identifier for that item. * @param {number} index -The index of the current item in the collection. * @param {FooterLink} link -Link object with required properties. * @return {string} -returns link label as an unique identifier. * @memberof FooterComponent */ trackByFunc(index: number, link: FooterLink): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }