import 'codeceptjs'; /** * Profile related class */ export declare class ManageProfile { /** * Function is use to Navigate To Manage Profile page * * ```js * ManageProfile.navigateToManageProfile(); * ``` */ static navigateToManageProfile(): Promise; /** * Function is use to upload Profile Picture in Manage Profile Page * * ```js * ManageProfile.uploadProfilePicture(); * ``` */ static uploadProfilePicture(): Promise; /** * Function is use to verify whether Profile Picture in uploaded in Manage Profile page * * ```js * * ManageProfile.verifyUploadedProfilePicture(); * ``` */ static verifyUploadedProfilePicture(): Promise; /** * Function is use to reset Profile Picture in Manage Profile page * * ```js * * ManageProfile.resetProfilePicture(); * ``` */ static resetProfilePicture(): Promise; /** * Function is use to change password for the user * * ```js * * ManageProfile.changePassword(); * ``` */ static changePassword(): Promise; /** * Function is use to verify password is updated * * ```js * * ManageProfile.verifyIfPasswordUpdated(); * ``` */ static verifyIfPasswordUpdated(): Promise; /** * Function is use to change pin for user * * ```js * * ManageProfile.changePin(); * ``` */ static changePin(): Promise; /** * Function is use to verify if pin is updated * * ```js * * ManageProfile.verifyIfPinUpdated(); * ``` */ static verifyIfPinUpdated(): Promise; }