import { Page } from "@playwright/test"; import { UiBaseLocators } from "./UiBaseLocators"; export declare class ExamineManagementUiHelper extends UiBaseLocators { private readonly examineManagementTab; private readonly indexersContent; private readonly indexerItems; private readonly indexInfoRow; constructor(page: Page); clickExamineManagementTab(): Promise; doesIndexersHaveText(text: string): Promise; checkIndexersCount(): Promise; clickIndexByName(indexName: string): Promise; doesIndexPropertyHaveValue(indexProperty: string, indexValue: string): Promise; doesIndexHaveHealthStatus(indexName: string, status: string): Promise; }