import { ElementRef, EventEmitter, OnDestroy } from "@angular/core"; import { SpsTab } from "@spscommerce/ds-shared"; export declare class SpsListToolbarComponent implements OnDestroy { private _elementRef; static readonly displayName = "sps-list-toolbar"; static readonly props: { advancedSearch: string; title: string; tabs: string; activeTab: string; tabChange: { event: boolean; type: string; }; }; readonly _spsListToolbarClass = true; advancedSearch: any; title: string; tabs: SpsTab[]; activeTab: SpsTab; tabChange: EventEmitter; isPinned: boolean; readonly advancedSearchIsOpen: any; private _unpinScrollY; constructor(_elementRef: ElementRef); ngOnDestroy(): void; onScroll(): void; }