import { OjWebElement } from '@oracle/oraclejet-webdriver/elements'; /** * This is the base class for oj-c-menu-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, MenuButtonWebElement.ts. */ export declare class MenuButtonWebElementBase extends OjWebElement { /** * Gets the value of label property. * Text to show in the button. * @return The value of label property. * */ getLabel(): Promise; /** * Gets the value of suffix property. * Suffix appended to menu label to indicate last selection. * @return The value of suffix property. * */ getSuffix(): 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 items property. * Items describe the menu items rendered by the menu button. * @return The value of items property. * */ getItems(): Promise>; /** * Sets the value of selection property. * An array containing key/value objects for menu selection groups. * @param selection The value to set for selection * */ changeSelection(selection: object): Promise; /** * Gets the value of selection property. * An array containing key/value objects for menu selection groups. * @return The value of selection property. * */ getSelection(): 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 disabled property. * Specifies that the button element should be disabled. * @return The value of disabled property. * */ getDisabled(): Promise; /** * Gets the value of size property. * Size of button * @return The value of size property. * */ getSizeProperty(): 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 chroming property. * Indicates in what states the button has chromings in background and border. * @return The value of chroming property. * */ getChroming(): Promise; }