import { BaseUniDriver } from '@wix/wix-ui-test-utils/base-driver'; import { UniDriver } from '@wix/wix-ui-test-utils/unidriver'; export interface CircularProgressBarCoreUniDriver extends BaseUniDriver { /** Returns boolean that indicates if the success icon exists */ isSuccessIconDisplayed(): Promise; /** Returns boolean that indicates if the error icon exists */ isErrorIconDisplayed(): Promise; /** Returns boolean that indicates if the progress percentages text exists */ isPercentagesProgressDisplayed(): Promise; /** Returns boolean that indicates if the label text exists */ isLabelDisplayed(): Promise; /** Get the text content displayed */ getLabelTextContent(): Promise; /** Get the progress percentages value */ getValue(): Promise; /** Returns true if has progress completed (value is 100) */ isCompleted(): Promise; /** Returns true if has error */ hasError(): Promise; getAttribute(name: string): Promise; /** Returns true if single element with given data-hook rendered*/ isSingleElementRendered(dataHook: string): Promise; } export declare const circularProgressBarCoreUniDriverFactory: (base: UniDriver) => CircularProgressBarCoreUniDriver; //# sourceMappingURL=CircularProgressBarCore.uni.driver.d.ts.map