import { SideBarView, ViewSection, ViewSectionConstructor } from "../.."; import { AbstractElement } from "../AbstractElement"; /** * Page object representing the view container of a side bar view */ export declare class ViewContent extends AbstractElement { constructor(view?: SideBarView); /** * Finds whether a progress bar is active at the top of the view * @returns Promise resolving to true/false */ hasProgress(): Promise; /** * Retrieves a collapsible view content section by its title. * Generic parameter allows caller to cast returned section to * desired type, however it is caller's responsibility to check * whether type is compatible with desired type. * @param title Title of the section * @returns Promise resolving to ViewSection object */ getSection(title: string): Promise; /** * Retrieves a collapsible view content section by its title. * Type parameter allows caller to use custom section implementation, * however it is caller's responsibility to check * whether type is compatible with desired type. * @param title Title of the section * @param type ViewSection constructor to be used * @returns Promise resolving to object specified by type */ getSection(title: string, type: ViewSectionConstructor): Promise; /** * Retrieves a collapsible view content section by predicate. * Generic parameter allows caller to cast returned section to * desired type, however it is caller's responsibility to check * whether type is compatible with desired type. * @param predicate Predicate to be used when searching * @returns Promise resolving to ViewSection object */ getSection(predicate: ((section: ViewSection) => boolean | PromiseLike)): Promise; /** * Retrieves a collapsible view content section by predicate. * Type parameter allows caller to use custom section implementation, * however it is caller's responsibility to check * whether type is compatible with desired type. * @param predicate Predicate to be used when searching * @param type ViewSection constructor to be used * @returns Promise resolving to object specified by type */ getSection(predicate: ((section: ViewSection) => boolean | PromiseLike), type: ViewSectionConstructor): Promise; /** * Retrieves all the collapsible view content sections * @returns Promise resolving to array of ViewSection objects */ getSections(): Promise; private createSection; }