import { BaseUniDriver } from '@wix/wix-ui-test-utils/base-driver'; export interface ColorPickerUniDriver extends BaseUniDriver { confirm: () => Promise; cancel: () => Promise; clickOnPreviousColor: () => Promise; historyPanelExists: () => Promise; historyCurrentColor: () => Promise; historyPreviousColor: () => Promise; clickAddColor: () => Promise; selectRgbTab: () => Promise; selectHsbTab: () => Promise; }