import { ViewContent, ViewTitlePart } from '../index.js'; import { IPageDecorator, BasePage, LocatorComponents } from '../utils.js'; import { SideBarView as SideBarViewLocators } from '../../locators/1.73.0.js'; export interface SideBarView extends IPageDecorator { } /** * Page object for the side bar view * * @category Sidebar */ export declare class SideBarView extends BasePage { /** * @private */ locatorKey: LocatorComponents; /** * Get the top part of the open view (contains title and possibly some buttons) * @returns ViewTitlePart object */ getTitlePart(): ViewTitlePart; /** * Get the content part of the open view * @returns ViewContent object */ getContent(): ViewContent; } //# sourceMappingURL=SideBarView.d.ts.map