import { UniDriver } from '@wix/wix-ui-test-utils/unidriver'; export declare function EditableColumnHeaderUniDriver(base: UniDriver, body: UniDriver): { exists: () => Promise; /** Whether the "..." more button exists */ hasMoreButton: () => Promise; /** Hover the column header (reveals the "..." button in designs that hide it) */ hover: () => Promise; /** Click the "..." button to open the popover menu */ clickMoreButton: () => Promise; /** Whether the popover menu is currently open */ isMenuOpen: () => Promise; /** Number of items in the popover menu */ menuItemCount: () => Promise; /** Get the text content of a menu item by index */ getMenuItemText: (index: number) => Promise; /** Click a menu item by index */ clickMenuItem: (index: number) => Promise; /** Whether the menu item at the given index is disabled */ isMenuItemDisabled: (index: number) => Promise; }; //# sourceMappingURL=EditableColumnHeader.uni.driver.d.ts.map