import type { StepPattern } from '../types'; /** * Page object base for step and anchor step */ export declare abstract class StepBasePageObject { protected readonly element: T; constructor(element: T); getSuccessSeverityLabel(): string; getErrorSeverityLabel(): string; getWarningSeverityLabel(): string; getSelectedStateLabel(): string; click(): void; }