import { Page } from "@playwright/test"; import { UiBaseLocators } from "./UiBaseLocators"; export declare class StylesheetUiHelper extends UiBaseLocators { private readonly newStylesheetBtn; private readonly newStylesheetFolderBtn; private readonly stylesheetNameTxt; private readonly stylesheetTree; constructor(page: Page); clickActionsMenuForStylesheet(name: string): Promise; createStylesheetFolder(folderName: string): Promise; clickActionsMenuAtRoot(): Promise; clickRootFolderCaretButton(): Promise; clickNewStylesheetButton(): Promise; clickNewStylesheetFolderButton(): Promise; clickSaveButtonAndWaitForStylesheetToBeCreated(): Promise; clickSaveButtonAndWaitForStylesheetToBeUpdated(): Promise; enterStylesheetName(stylesheetName: string): Promise; enterStylesheetContent(stylesheetContent: string): Promise; openStylesheetByNameAtRoot(stylesheetName: string): Promise; reloadStylesheetTree(): Promise; isStylesheetRootTreeItemVisible(stylesheetName: string, isVisible?: boolean, toReload?: boolean): Promise; goToStylesheet(stylesheetName: string): Promise; clickConfirmToDeleteButtonAndWaitForStylesheetToBeDeleted(): Promise; clickDeleteAndConfirmButtonAndWaitForStylesheetToBeDeleted(): Promise; createStylesheetFolderAndWaitForStylesheetToBeCreated(folderName: string): Promise; renameAndWaitForStylesheetToBeRenamed(newName: string): Promise; }