import { ElementRef, OnInit, TemplateRef } from '@angular/core'; import { FooterService } from './footer.service'; /** * Footer Left */ export declare class FooterLeftComponent { templateRef: TemplateRef; } /** * Footer Right */ export declare class FooterRightComponent { templateRef: TemplateRef; } export declare class FooterComponent implements OnInit { private elementRef; private footerService; footerLeftComponent: FooterLeftComponent; footerRightComponent: FooterRightComponent; constructor(elementRef: ElementRef, footerService: FooterService); ngOnInit(): void; }