import { InjectionToken } from '@angular/core'; import { PivotComponent } from './pivot.component'; export interface PivotTabContainer { renderTab: (tab: PivotComponent) => void; applyTabStyle: (element: HTMLElement) => void; } /** * Injection token used to provide a {@link PivotTabContainer } reference */ export declare const SME_PIVOT_TAB_CONTAINER_PROVIDER: InjectionToken;