import { Locator, Page } from '@playwright/test'; import { BasePage } from './base-page'; export declare abstract class DetailsPage extends BasePage { readonly header: Locator; readonly tabs: Locator; readonly tabContent: Locator; readonly controlActions: Locator; readonly closeButton: Locator; readonly backLink: Locator; readonly pageName: Locator; readonly resourceName: string; readonly heading: Locator; readonly breadcrumb: Locator; readonly editorWidget: Locator; readonly findTextArea: Locator; constructor(page: Page, resourceName: string); activateTab(tabName: string): Promise; searchInEditor(tabName: string, text: string): Promise; }