import { EventEmitter, OnDestroy, OnInit } from '@angular/core'; import { LzProductConfig } from "../../../../services/product-config/poduct-config"; import { CustomRequestService } from "../../../../services/custom-request/custom-request.service"; import { LzLanguageService } from '../../../../services/lz-language/lz-language.service'; export declare class LzBurgerComponent implements OnInit, OnDestroy { private http; private lzProductConfig; private language; onChanged: EventEmitter; change(closed: any): void; isSmallHeader: boolean; private lang; private config; private productsSub; products: any[]; shopLink: string; constructor(http: CustomRequestService, lzProductConfig: LzProductConfig, language: LzLanguageService); ngOnInit(): void; toggle(event: any): void; getProducts(): void; sortByOrder(array: any, key: string): any; scrollToProductList(): void; ngOnDestroy(): void; }