import { AfterViewInit, OnDestroy, OnInit } from '@angular/core'; import { PoProgressBaseComponent } from './po-progress-base.component'; /** * @docsExtends PoProgressBaseComponent * * @example * * * * * * * * * * * * * * * * * * * * * * */ export declare class PoProgressComponent extends PoProgressBaseComponent implements OnInit, AfterViewInit, OnDestroy { language: any; literals: any; private readonly elementRef; private resizeObserver?; private observeTarget; get isAllowCancel(): boolean; get isAllowInfoError(): boolean; get isAllowRetry(): boolean; get statusClass(): string; private readonly poLanguageService; private readonly router; parentSize: import("@angular/core").WritableSignal; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; emitCancellation(): void; emitRetry(): void; actionIsDisabled(action: any): any; callAction(): void; isActionVisible(action: any): any; private hasExplicitHeight; private hasAllocatedHeight; private measureAndSetParentSize; private findConstrainedAncestor; }