import { Locator, Page } from '@playwright/test'; import { BasePage } from './base-page'; export declare class TroubleshootingPage extends BasePage { readonly heading: Locator; readonly header: Locator; readonly tabs: Locator; readonly tabContent: Locator; readonly containerConnectionsStatus: Locator; readonly storesStatus: Locator; readonly logsText: Locator; readonly logsList: Locator; readonly storesList: Locator; readonly gatherLogsText: Locator; readonly reconnectProvidersButton: Locator; readonly reconnectProvidersStatus: Locator; constructor(page: Page); openRepairConnections(): Promise; openStores(): Promise; openLogs(): Promise; openGatherLogs(): Promise; private openTab; getLogs(): Promise; refreshStore(storeName: string): Promise; getContainerConnectionsStatus(): Promise; reconnectProviders(): Promise; }