import { BimElementPanelContext, BimRightPanelContext, ObjectsViewContext } from "../contexts"; import { ITabsBuilder } from "./tabs.builder"; /** * Interface that allows to add new items to the tabs * @exposedInterface */ export declare abstract class ITabs { /** * The method is called just before the tabs are shown * @param builder The tab group builder object of associated tab group * @param context Context */ build(builder: ITabsBuilder, context: TTabsContext): void; }