import { ChangeDetectorRef, OnDestroy } from '@angular/core'; import { BixiLayoutService } from './layout.service'; import { IBreadcrumb } from './layout.type'; import { Subscription } from 'rxjs'; export declare class BixiLayoutComponent implements OnDestroy { private layoutService; private cdr; subscription: Subscription; singleOpen: boolean; open: boolean; showHeader: boolean; breadcrumbs: IBreadcrumb[]; constructor(layoutService: BixiLayoutService, cdr: ChangeDetectorRef); onOpenChange(): void; ngOnDestroy(): void; }