import type { UniDriver } from '@wix/wix-ui-test-utils/unidriver'; import type { TooltipSize } from './Tooltip.types'; export declare const tooltipDriverFactory: (base: UniDriver, body: UniDriver) => { /** Clicks on the target element */ click: () => Promise; /** returns true if tooltip element exists on the DOM */ tooltipExists: () => Promise; /** mouse over the target element */ mouseEnter: () => Promise; /** mouse leaves the target element */ mouseLeave: () => Promise; /** clicks outside the tooltip target */ clickOutside: () => Promise; /** returns tooltips content value in string */ getTooltipText: () => Promise; /** * Checks whether tooltip has a given size * @param {boolean} sizeName The tooltip size * @return {Promise} */ hasSize: (sizeName: TooltipSize) => Promise; exists: () => Promise; element: () => Promise; }; export type TooltipUniDriver = ReturnType; //# sourceMappingURL=Tooltip.uni.driver.d.ts.map