import { BaseUniDriver } from 'wix-ui-test-utils/base-driver'; import { NotificationTheme } from './index'; export interface NotificationUniDriver extends BaseUniDriver { visible: () => Promise; hasTheme: (theme: NotificationTheme) => Promise; isStandardNotification: () => Promise; isErrorNotification: () => Promise; isSuccessNotification: () => Promise; isWarningNotification: () => Promise; isPremiumNotification: () => Promise; getLabelText: () => Promise; hasActionButton: () => Promise; getActionButtonText: () => Promise; hasCloseButton: () => Promise; isRelativelyPositioned: () => Promise; isFixedPositioned: () => Promise; isAbsolutePositioned: () => Promise; clickOnCloseButton: () => Promise; clickOnActionButton: () => Promise; getZIndex: () => Promise; }