import { OjWebElement } from '@oracle/oraclejet-webdriver/elements';
/**
* This is the base class for oj-c-progress-bar 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, ProgressBarWebElement.ts.
*/
export declare class ProgressBarWebElementBase extends OjWebElement {
/**
* Gets the value of max property.
* The maximum allowed value.
* @return The value of max property.
*
*/
getMax(): Promise;
/**
* Gets the value of value property.
* The value of the Progress Bar.
* @return The value of value property.
*
*/
getValue(): Promise;
/**
* Gets the value of edge property.
* Specifies whether the progress bar is on the top edge of a container
* @return The value of edge property.
*
*/
getEdge(): Promise;
}