/** * Copyright (c) 2025, Salesforce, Inc. * All rights reserved. * For full license text, see the LICENSE file or https://utam.dev/salesforce/license */ import { Driver as _Driver, Element as _Element, Locator as _Locator, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * Selector: lightning-progress-ring * Represents the lightning-progress-ring Lightning web component. * Get the assistive text. Get the current value of the ring. * Check if the ring is active, or is expired, or has a warning. * generated from JSON dist/lightning/progressRing.utam.json * @version 2026-03-09T13:56:36.204Z * @author Salesforce */ declare class ProgressRing extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get assistive text of progress ring * @return string */ getAssistiveText(): Promise; /** * Get current percentage value of the progress ring * @return string */ getValue(): Promise; /** * Is progress ring of active step variant * @return boolean */ isActiveStepVariant(): Promise; /** * Is progress ring of expired variant * @return boolean */ isExpiredVariant(): Promise; /** * Is progress ring of warning variant * @return boolean */ isWarningVariant(): Promise; } export = ProgressRing;