import { BaseUniDriver } from 'wix-ui-test-utils/base-driver'; export interface CalendarPanelFooterUniDriver extends BaseUniDriver { isPrimaryButtonDisabled: () => Promise; getSelectedDaysText: () => Promise; getPrimaryActionButtonLabel: () => Promise; getSecondaryActionButtonLabel: () => Promise; clickOnPrimaryButton: () => Promise; clickOnSecondaryButton: () => Promise; }