import { BaseUniDriver } from 'wix-ui-test-utils/base-driver'; export interface AutoCompleteWithLabelUniDriver extends BaseUniDriver { getLabelText: () => Promise; getValue: () => Promise; enterText: (value: string) => Promise; clickAtOption: (optionIndex: number) => Promise; clickAtOptionWithValue: (value: string) => Promise; clickMenuArrow: () => Promise; isDisabled: () => Promise; blur: () => Promise; hasError: () => Promise; }