import { AfterContentInit, ChangeDetectorRef, EventEmitter, OnChanges, QueryList, SimpleChanges } from "@angular/core"; import { CardSpsTab } from "../../types/card"; import { SpsCardTabbedPaneComponent } from "../card-tabbed-pane/sps-card-tabbed-pane.component"; export declare class SpsCardComponent implements AfterContentInit, OnChanges { private changeDetector; static readonly displayName = "sps-card"; static readonly props: { activeTab: string; tabChange: { event: boolean; type: string; }; }; activeTab: string; id: any; tabChange: EventEmitter; readonly _classSpsCard = true; panes: QueryList; tabs: CardSpsTab[]; _activeSpsTab: CardSpsTab; constructor(changeDetector: ChangeDetectorRef); _onTabChange(newTab: CardSpsTab): void; private _updateActiveTab; private _registerTabs; ngAfterContentInit(): void; ngOnChanges(changes: SimpleChanges): void; }