import type { FoundationElement } from '@ni/fast-foundation'; /** * A page object for the elements that use the error pattern mixin. */ export declare class ErrorPatternPageObject { private readonly element; constructor(element: FoundationElement); isErrorIconVisible(): boolean; getDisplayedErrorText(): string; getErrorTextTitle(): string; dispatchEventToErrorText(event: MouseEvent): void; private getErrorIconElement; private getErrorTextElement; }