import { OjWebElement } from '@oracle/oraclejet-webdriver/elements';
/**
* This is the base class for oj-c-collapsible WebElement, and is generated from the
* component's metadata. Do not modify these contents since they'll be replaced
* during the next generation.
* Put overrides into the WebElements's subclass, CollapsibleWebElement.ts.
*/
export declare class CollapsibleWebElementBase extends OjWebElement {
/**
* Gets the value of disabled property.
* Disables the collapsible if set to true.
* @return The value of disabled property.
*
*/
getDisabled(): Promise;
/**
* Gets the value of expanded property.
* Specifies if the content is expanded.
* @return The value of expanded property.
*
*/
getExpanded(): Promise;
/**
* Gets the value of iconPosition property.
* Controls placement of the icon in the header.
* @return The value of iconPosition property.
*
*/
getIconPosition(): Promise;
/**
* Gets the value of variant property.
* Controls display of the optional divider below the header.
* @return The value of variant property.
*
*/
getVariant(): Promise;
}