import { BaseUniDriver } from 'wix-ui-test-utils/base-driver'; export interface SectionHelperUniDriver extends BaseUniDriver { titleText: () => Promise; actionText: () => Promise; clickAction: () => Promise; clickClose: () => Promise; isCloseButtonDisplayed: () => Promise; textContent: () => Promise; isWarning: () => Promise; isStandard: () => Promise; isDanger: () => Promise; isExperimentalDark: () => Promise; isSuccess: () => Promise; isPremium: () => Promise; isPreview: () => Promise; }