import { OnDestroy } from '@angular/core'; import { Store } from '@ngrx/store'; import { Observable, Subscription } from 'rxjs'; import { MavSelectionState } from '../../mav-selection/shared/store'; import { SidenavState } from '../shared/store'; export declare class ToolbarContentComponent implements OnDestroy { private store; private mavSelectionStore; isSidenavOpen: boolean; /** * Advanced Enabled observable to that holds the value to determined if advanced options are enabled or not. */ advancedEnabled$: Observable; /** * Loading share url subscription of toolbar content component */ loadingShareUrlSubscription: Subscription; constructor(store: Store, mavSelectionStore: Store); ngOnDestroy(): void; }