import { ActionContainer, Base } from "survey-core";
import { SidebarModel } from "./side-bar-model";
import { MenuButton } from "../../utils/actions";
export declare class TabControlModel extends Base {
    sidePanel: SidebarModel;
    bottomToolbar: ActionContainer<MenuButton>;
    expandCollapseAction: MenuButton;
    onTopToolbarItemCreated: (bar: ActionContainer<MenuButton>) => void;
    private updateExpandCollapseAction;
    private createToggleAction;
    constructor(sidePanel: SidebarModel);
    private topToolbarValue;
    get isTopToolbarCreated(): boolean;
    get topToolbar(): ActionContainer<MenuButton>;
    get sideBarClassName(): string;
}
