import { CollapsibleWebElementBase } from './CollapsibleWebElementBase'; /** * The component WebElement for [oj-c-collapsible](../../jsdocs/oj-c.Collapsible.html). * Do not instantiate this class directly, instead, use * [findCollapsible](../functions/findCollapsible.html). */ export declare class CollapsibleWebElement extends CollapsibleWebElementBase { private toggleButton; /** * Collapse the content. If already collapsed, this method will do nothing. * @returns Promise */ doCollapse(): Promise; /** * Expand the content. If already expanded, this method will do nothing. * @returns Promise */ doExpand(): Promise; private getToggleButton; }