import { UniDriver } from '@wix/wix-ui-test-utils/unidriver'; declare const cardGalleryItemDriverFactory: (base: UniDriver, body: UniDriver) => { /** * Gets the cards title. * @returns {Promise} */ getTitle: () => Promise; /** * Gets the badge node element. * @returns {Promise} */ getBadge: () => Promise; /** * Gets the cards subtitle. * @returns {Promise} */ getSubtitle: () => Promise; /** * Gets the background image URL. * @returns {Promise} */ getBackgroundImageUrl: () => Promise; /** * Clicks on the primary action. * @returns {Promise} */ click: () => Promise; /** * Clicks on the footer. * @returns {Promise} */ clickFooter: () => Promise; /** * Gets the primary action label. * @returns {Promise} */ getPrimaryActionLabel: () => Promise; /** * Checks whether the primary action is clickable. * @returns {Promise} */ isPrimaryActionDisabled: () => Promise; /** * Clicks on the primary action button. * @returns {Promise} */ clickOnPrimaryAction: () => Promise; /** * Gets the secondary action label. * @returns {Promise} */ getSecondaryActionLabel: () => Promise; /** * Clicks on the secondary action. * @returns {Promise} */ clickOnSecondaryAction: () => Promise; /** * Gets the the settingsMenu node. * @returns {Promise} */ getSettingsMenu: () => Promise; /** * Gets the background image element. * @returns {Promise} */ getBackgroundImageNode: () => Promise; /** * Hovers the component. * @returns {Promise} */ hover: () => Promise; /** * Indicates drag handle exists */ dragHandleExists: () => Promise; clickDragHandle: () => Promise; hoverDragHandle: () => Promise; isDragHandleTooltipEnabled: () => Promise; getDragHandleTooltipContent: () => Promise; exists: () => Promise; element: () => Promise; }; export type CardGalleryItemUniDriver = ReturnType; export default cardGalleryItemDriverFactory; //# sourceMappingURL=CardGalleryItem.uni.driver.d.ts.map