import { BaseUniDriver } from '@wix/wix-ui-test-utils/base-driver'; import { UniDriver } from '@wix/wix-ui-test-utils/unidriver'; export interface LinearProgressBarCoreUniDriver extends BaseUniDriver { /** Get the width of the foreground bar (the progress) */ getWidth(): Promise; /** Returns Promise that indicates if the success icon exists */ isSuccessIconDisplayed(): Promise; /** Returns Promise that indicates if the error icon exists */ isErrorIconDisplayed(): Promise; /** Returns Promise that indicates if the progress percentages text exists */ isPercentagesProgressDisplayed(): Promise; /** Returns Promise that indicates if the prefix indication exists */ hasPrefixIndication(): Promise; /** Returns Promise that indicates if the custom suffix indication exists */ hasSuffixIndication(): Promise; /** Get the suffix indication's text */ getSuffixIndicationText(): Promise; /** Get the prefix indication aria-hidden value */ hasPrefixAriaHidden(): Promise; /** Get the progress indication aria-hidden value */ hasProgressIndicatorAriaHidden(): Promise; /** Get the progress percentages value */ getValue(): Promise; /** Get the progress numeric value */ getNumericValue(): Promise; /** Returns true if has progress completed (value is 100) */ isCompleted(): Promise; /** Returns true if has error */ hasError(): Promise; /** Returns min value prop */ getMinValue(): Promise; /** Returns max value prop */ getMaxValue(): Promise; /** Returns aria-valuenow prop */ getAriaValueNow(): Promise; /** Returns aria-valuemin prop */ getAriaValueMin(): Promise; /** Returns aria-valuemax prop */ getAriaValueMax(): Promise; /** Returns aria-label prop */ getAriaLabel(): Promise; /** Returns role html attribute */ getRoleAttribute(): Promise; /** Returns aria-valuetext prop */ getAriaValueText(): Promise; } export declare const linearProgressBarUniDriverFactory: (base: UniDriver) => LinearProgressBarCoreUniDriver; //# sourceMappingURL=LinearProgressBarCore.uni.driver.d.ts.map