import { EventEmitter } from '@angular/core'; import { ButtonI } from '../../../interfaces/button.interface'; import { SafeStyle } from '@angular/platform-browser'; import { FooterAI } from '../../../interfaces/core/footer-a.interface'; import * as i0 from "@angular/core"; export declare class FooterAComponent implements FooterAI { image: string; imageLink: string; elements: FooterElement[]; showScroll?: boolean; scrollClick: EventEmitter; private readonly sanitizer; get getImage(): SafeStyle; scrollClicked(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export interface FooterElement { leftSlot: FooterElementContent; rightSlot: FooterElementContent; elementUrl?: string; icon?: string; } export interface FooterElementContent { pretitle?: string; subtitle?: string; info?: FooterElementInfo[]; socialMedia?: ButtonI[]; images?: string[]; } export interface FooterElementInfo { text: string; url?: string; icon?: string; image?: string; }