import { OnChanges } from '@angular/core'; import { CookieService } from 'ngx-cookie'; import { IMegaFooter } from './mega.footer.interface'; import { ICitiesCollection, ISportsCollection } from '../../../molecules/footer.nav/footer.nav.interface'; export declare class MegaFooterSharedComponent implements OnChanges { private cookieService; data: IMegaFooter; city: string; cities: ICitiesCollection; sports: ISportsCollection; cityUppercase: string; currentYear: number; constructor(cookieService: CookieService); ngOnChanges(): void; clearCityCookie(url: string): void; }