import { OjWebElement } from '@oracle/oraclejet-webdriver/elements'; /** * This is the base class for oj-c-toggle-button 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, ToggleButtonWebElement.ts. */ export declare class ToggleButtonWebElementBase extends OjWebElement { /** * Gets the value of label property. * Text to show in the button. * @return The value of label property. * */ getLabel(): Promise; /** * Sets the value of value property. * Specifies if the toggle button is selected * @param value The value to set for value * */ changeValue(value: boolean): Promise; /** * Gets the value of value property. * Specifies if the toggle button is selected * @return The value of value property. * */ getValue(): Promise; /** * Gets the value of tooltip property. * Text to show in the tooltip. This overrides the default tooltip that renders the label when in icon mode. * @return The value of tooltip property. * */ getTooltip(): Promise; /** * Gets the value of disabled property. * Specifies that the button element should be disabled. * @return The value of disabled property. * */ getDisabled(): Promise; /** * Gets the value of width property. * Specifies that the button style width * @return The value of width property. * */ getWidth(): Promise; /** * Gets the value of display property. * Display just the label, the icons, or all. Label is used as tooltip and should be set in all cases. * @return The value of display property. * */ getDisplay(): Promise; /** * Gets the value of size property. * Size of button * @return The value of size property. * */ getSizeProperty(): Promise; /** * Gets the value of chroming property. * Indicates in what states the button has variants in background and border. * @return The value of chroming property. * */ getChroming(): Promise; }