import { Page } from "@playwright/test"; import { UiBaseLocators } from "./UiBaseLocators"; export declare class LanguageUiHelper extends UiBaseLocators { private readonly languagesMenu; private readonly languageDropdown; private readonly defaultLanguageToggle; private readonly mandatoryLanguageToggle; private readonly addFallbackLanguageBtn; private readonly languageTable; private readonly deleteLanguageEntityAction; private readonly languageCreateBtn; private readonly settingsSidebar; constructor(page: Page); clickLanguageCreateButton(): Promise; clickLanguagesMenu(): Promise; goToLanguages(): Promise; removeFallbackLanguageByIsoCode(isoCode: string): Promise; chooseLanguageByName(name: string): Promise; clickLanguageByName(name: string): Promise; isLanguageNameVisible(name: string, isVisible?: boolean): Promise; switchDefaultLanguageOption(): Promise; switchMandatoryLanguageOption(): Promise; clickAddFallbackLanguageButton(): Promise; clickRemoveLanguageByName(name: string): Promise; removeLanguageByName(name: string): Promise; removeLanguageByNameAndWaitForLanguageToBeDeleted(name: string): Promise; selectFallbackLanguageByName(name: string): Promise; clickSaveButtonAndWaitForLanguageToBeCreated(): Promise; clickSaveButtonAndWaitForLanguageToBeUpdated(): Promise; clickConfirmToDeleteButtonAndWaitForLanguageToBeDeleted(): Promise; }