import { WebElement } from 'vscode-extension-tester';
/**
 * Retrieves a status bar item that contains the specified text in its title
 * @param title - The text to search for in the status bar item's title
 * @returns A WebElement representing the status bar item
 * @throws Error if the status bar item is not found after multiple retries
 */
export declare function getStatusBarItemWhichIncludes(title: string): Promise<WebElement>;
