import { AfterContentInit, OnChanges, 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 {
private readonly renderer;
private readonly router;
limitPrimaryActions: number;
dropdownActions: Array;
isMobile: boolean;
private readonly maxWidthMobile;
constructor();
ngAfterContentInit(): void;
ngOnChanges(changes: {
[propName: string]: SimpleChange;
}): void;
actionIsDisabled(action: any): any;
actionIsVisible(action: any): any;
callAction(item: PoPageAction): void;
hasPageHeader(): boolean;
setDropdownActions(): void;
getVisibleActions(): PoPageAction[];
private onResize;
private setIsMobile;
}