import { OnInit } from '@angular/core'; import { SkyAppResourcesService } from '@blackbaud/skyux-builder/runtime/i18n'; import 'rxjs/add/operator/take'; import { StacheConfigService } from '../shared'; import { StacheNavLink } from '../nav'; export declare class StacheFooterComponent implements OnInit { private configService; private resourcesService; copyrightDate: Date; copyrightLabel: string; siteName: string; footerLinks: StacheNavLink[]; constructor(configService: StacheConfigService, resourcesService: SkyAppResourcesService); ngOnInit(): void; private setFooterData(); }