import { Page } from "@playwright/test"; import { UiBaseLocators } from "./UiBaseLocators"; export declare class ProfilingUiHelper extends UiBaseLocators { private readonly profilingTab; private readonly activateProfilerByDefaultToggle; private readonly activateProfilerByDefaultCheckbox; constructor(page: Page); clickProfilingTab(): Promise; clickActivateProfilerByDefaultToggle(): Promise; isActivateProfilerByDefaultToggleChecked(isChecked: boolean): Promise; }