import { BaseDriver, DriverFactory } from 'wix-ui-test-utils/driver-factory'; export interface FloatingHelperContentDriver extends BaseDriver { /** checks if the element exists */ exists(): boolean; /** checks if title exists */ hasTitle(): boolean; /** checks if text content exists */ hasBody(): boolean; /** checks if an image exists */ hasImage(): boolean; /** checks if the action button exists */ hasActionButton(): boolean; /** checks if the footer exists */ hasFooter(): boolean; /** Get the text content of the title */ getTitleContent(): string; /** Get the text content of the helper's text */ getBodyContent(): string; /** Get image HTML element*/ getImage(): HTMLElement; /** Get footer HTML element*/ getFooter(): HTMLElement; /** Get text of action button */ getActionButtonText(): string; /** naive way to check for stylable class */ matchesActionButtonClassName(className: string): boolean; /** click on the action button */ clickActionButton(): void; } export declare const floatingHelperContentDriverFactory: DriverFactory;