import { Page } from "@playwright/test"; import { UiBaseLocators } from "./UiBaseLocators"; export declare class CurrentUserProfileUiHelper extends UiBaseLocators { private readonly changePasswordBtn; constructor(page: Page); clickChangePasswordButton(): Promise; changePassword(currentPassword: string, newPassword: string): Promise; changePasswordAndWaitForSuccess(currentPassword: string, newPassword: string): Promise; }