import { EventEmitter } from '@angular/core'; import { ButtonI } from '../../../interfaces/button.interface'; import { DomSanitizer, SafeStyle } from '@angular/platform-browser'; import { CollapsableInfoI } from '../../../interfaces/core/collapsable-info.interface'; import * as i0 from "@angular/core"; export declare class CollapsableInfoComponent implements CollapsableInfoI { private readonly sanitizer; pretitle?: string; title?: string; moreInfoButton: ButtonI; lessInfoButton: ButtonI; contentCollapsed: CollapsableInfoItem[]; desktop?: boolean; clickCollapse: EventEmitter; collapsed: boolean; constructor(sanitizer: DomSanitizer); toggleCollapse(): void; getBackgroundImage(url: string): SafeStyle; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export interface CollapsableInfoItem { pretitle?: string; title?: string; subtitle?: string; description?: string; ndTitle?: string; ndSubtitle?: string; image?: string; }