import { ComponentWrapper, ElementWrapper } from "@awsui/test-utils-core/selectors"; import ButtonWrapper from '../button'; export default class ProgressBarWrapper extends ComponentWrapper { static rootSelector: string; findPercentageText(): ElementWrapper; findResultButton(): ButtonWrapper; /** * Returns the result text. * * @param status * * [optional] Status of the result text. It can be aither "error" or "succes". * If not specified, the method returns the result text that is currently displayed, independently of the result status. */ findResultText(status?: string): ElementWrapper; findAdditionalInfo(): ElementWrapper; }