import type { Locator, Page } from 'playwright/test'; export declare class CypherEditorPage { readonly page: Page; constructor(page: Page); getEditor(): Locator; focusEditor(): Promise; editorBackgroundIsUnset(): Promise; getHexColorOfLocator(locator: Locator): Promise; checkErrorMessage(queryChunk: string, expectedMsg: string): Promise; checkWarningMessage(queryChunk: string, expectedMsg: string): Promise; checkNoNotificationMessage(type: 'error' | 'warning'): Promise; private checkNotificationMessage; private checkHoverMessage; }