import { Page } from "@playwright/test"; import { UiBaseLocators } from "./UiBaseLocators"; export declare class PublishedStatusUiHelper extends UiBaseLocators { private readonly publishedStatusTab; private readonly refreshStatusBtn; private readonly reloadMemoryCacheBtn; private readonly rebuildDatabaseCacheBtn; private readonly snapshotInternalCacheBtn; private readonly continueBtn; private readonly publishedCacheBox; constructor(page: Page); clickPublishedStatusTab(): Promise; clickRefreshStatusButton(): Promise; clickReloadMemoryCacheButton(): Promise; clickRebuildDatabaseCacheButton(): Promise; clickSnapshotInternalCacheButton(): Promise; clickContinueButton(): Promise; isPublishedCacheStatusVisible(status: string): Promise; }