import { AbstractElement } from "../AbstractElement"; import { ViewTitlePart, ViewContent } from "../.."; /** * Page object for the side bar view */ export declare class SideBarView extends AbstractElement { constructor(); /** * 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; }