import { AfterViewInit, OnInit } from '@angular/core'; import { ButtonI } from '../../../interfaces/atomic/button.interface'; import * as i0 from "@angular/core"; export declare class HotelEquipmentComponent implements OnInit, AfterViewInit { private platformId; items?: HotelEquipmentItem[]; itemsBelow?: HotelEquipmentItem[]; title?: string; btnMore?: ButtonI; btnLess?: ButtonI; collapsed1: boolean; itemsToShow: number; constructor(platformId: Object); ngOnInit(): void; ngAfterViewInit(): void; toggleCollapse1(): void; collapsed2: boolean; toggleCollapse2(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export interface HotelEquipmentItem { title: string; icon: string; alt: string; }