import { ActionsControl, ViewControl } from "../.."; import { ElementWithContexMenu } from "../ElementWithContextMenu"; /** * Page object representing the left side activity bar in VS Code */ export declare class ActivityBar extends ElementWithContexMenu { constructor(); /** * Find all view containers displayed in the activity bar * @returns Promise resolving to array of ViewControl objects */ getViewControls(): Promise; /** * Find a view container with a given title * @param name title of the view * @returns Promise resolving to ViewControl object representing the view selector, undefined if not found */ getViewControl(name: string): Promise; /** * Find all global action controls displayed on the bottom of the activity bar * @returns Promise resolving to array of ActionsControl objects */ getGlobalActions(): Promise; /** * Find an action control with a given title * @param name title of the global action * @returns Promise resolving to ActionsControl object representing the action selector, undefined if not found */ getGlobalAction(name: string): Promise; }