import { BaseUniDriver } from 'wix-ui-test-utils/base-driver'; import { LoaderColor } from './index'; export interface LoaderUniDriver extends BaseUniDriver { /** @deprecated Should be private */ component: () => Promise; getColor: () => Promise; getText: () => Promise; hasText: () => Promise; isLarge: () => Promise; isMedium: () => Promise; isSmall: () => Promise; isTiny: () => Promise; isLoading: () => Promise; isError: () => Promise; isSuccess: () => Promise; getStatusMessage: () => Promise; }