import { ButtonI } from '../../../interfaces/button.interface'; import { ContactInfoI } from '../../../interfaces/core/contact-info.interface'; import * as i0 from "@angular/core"; export declare class ContactInfoComponent implements ContactInfoI { elements: ContactInfoElement[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export interface ContactInfoElement { title: string; content: ContactInfoElementContent[]; icon?: string; url?: string; } export interface ContactInfoElementContent { text?: string; url?: string; image?: { src: string; alt: string; }; icon?: string; socialMedia?: ButtonI[]; }