import { Locator, Page } from '@playwright/test'; import { BasePage } from './base-page'; import { DashboardPage } from './dashboard-page'; export declare class WelcomePage extends BasePage { readonly welcomeMessage: Locator; readonly telemetryConsent: Locator; readonly skipOnBoarding: Locator; readonly checkLoader: Locator; readonly startOnboarding: Locator; readonly onboardingMessageStatus: Locator; readonly nextStepButton: Locator; readonly cancelSetupButton: Locator; readonly otherVersionButton: Locator; readonly dropDownDialog: Locator; readonly latestVersionFromDropDown: Locator; readonly confirmationPopUp: Locator; readonly okButtonPopup: Locator; readonly markdownContentLocator: Locator; constructor(page: Page); turnOffTelemetry(): Promise; closeWelcomePage(): Promise; /** * Waits for application to initialize, turn off telemetry and closes welcome page */ handleWelcomePage(skipIfNotPresent: boolean): Promise; }