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