import { AfterContentInit, OnChanges, OnDestroy, SimpleChange } from '@angular/core'; import { PoPageAction } from '../interfaces/po-page-action.interface'; import { PoPageDefaultBaseComponent } from './po-page-default-base.component'; /** * @docsExtends PoPageDefaultBaseComponent * * @example * * * * * * * * * * * * * * * * * */ export declare class PoPageDefaultComponent extends PoPageDefaultBaseComponent implements AfterContentInit, OnChanges, OnDestroy { private readonly renderer; private readonly router; readonly backIcon: string; readonly backNavigationLabel: string; limitPrimaryActions: number; dropdownActions: Array; isMobile: boolean; private readonly maxWidthMobile; private _primaryKindUsed; private resizeUnlisten; constructor(); ngAfterContentInit(): void; ngOnChanges(changes: { [propName: string]: SimpleChange; }): void; ngOnDestroy(): void; actionIsDisabled(action: any): any; actionIsVisible(action: any): any; callAction(item: PoPageAction): void; hasPageHeader(): boolean; setDropdownActions(): void; getVisibleActions(): PoPageAction[]; getActionKind(action: PoPageAction, fallback: string): string; private onResize; private setIsMobile; }