import { BaseUniDriver } from 'wix-ui-test-utils/base-driver'; export interface SelectorListUniDriver extends BaseUniDriver { mainLoaderExists: () => Promise; nextPageLoaderExists: () => Promise; searchInputExists: () => Promise; focusSearchInput: () => Promise; enterSearchValue: (value: string) => Promise; getSearchValue: () => Promise; clickSearchInputClear: () => Promise; toggleAllCheckboxExists: () => Promise; isToggleAllCheckboxChecked: () => Promise; getToggleAllCheckboxLabel: () => Promise; clickToggleAllCheckbox: () => Promise; showsEmptyState: () => Promise; getEmptyState: () => Promise; showsNoResultsFoundState: () => Promise; getNoResultsFoundState: () => Promise; listExists: () => Promise; numberOfItemsInList: () => Promise; toggleSelectorAt: (i: number) => Promise; isSelectorCheckedAt: (i: number) => Promise; isSelectorDisabledAt: (i: number) => Promise; scrollDown: () => Promise; }