import { OjWebElement } from '../';
/**
* This is the base class for oj-drawer-popup 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, OjDrawerPopup.ts.
*/
export declare class OjDrawerPopupBase extends OjWebElement {
/**
* Gets the value of opened property.
* Specifies the 'opened' state of the drawer.
* @return The value of opened property.
*
*/
getOpened(): Promise;
/**
* Gets the value of edge property.
* Specifies at what edge the drawer opens.
* @return The value of edge property.
*
*/
getEdge(): Promise;
/**
* Gets the value of modality property.
* Controls the modality of the drawer.
* @return The value of modality property.
*
*/
getModality(): Promise;
/**
* Gets the value of autoDismiss property.
* Controls the close auto-dismiss behaviour to close the drawer.
* @return The value of autoDismiss property.
*
*/
getAutoDismiss(): Promise;
/**
* Gets the value of closeGesture property.
* Controls the close gesture to close the drawer.
* @return The value of closeGesture property.
*
*/
getCloseGesture(): Promise;
}