import { Page } from "@playwright/test"; import { UiBaseLocators } from "./UiBaseLocators"; export declare class MemberGroupUiHelper extends UiBaseLocators { private readonly memberGroupsTab; private readonly memberGroupNameTxt; private readonly memberGroupView; private readonly activeMemberGroupsTab; private readonly createMemberGroupBtn; private readonly memberGroupsMenu; private readonly membersSidebar; private readonly memberGroupsSidebarBtn; constructor(page: Page); clickMemberGroupsTab(): Promise; clickMemberGroupCreateButton(): Promise; clickMemberGroupsSidebarButton(): Promise; enterMemberGroupName(name: string): Promise; clickMemberGroupLinkByName(memberGroupName: string): Promise; isMemberGroupNameVisible(memberGroupName: string, isVisible?: boolean): Promise; clickMemberGroupsMenu(): Promise; goToMemberGroups(): Promise; clickSaveButtonAndWaitForMemberGroupToBeCreated(): Promise; clickSaveButtonAndWaitForMemberGroupToBeUpdated(): Promise; clickConfirmToDeleteButtonAndWaitForMemberGroupToBeDeleted(): Promise; }