import { OnInit, ViewContainerRef, ElementRef } from '@angular/core'; export declare class PageHeaderContentComponent implements OnInit { private viewContainerRef; /** @prop Text to display for title features | '' */ title: string; /** @prop Text to display for descriptions features | '' */ lead: string; /** @prop define if the component if fixed dom | false */ ifFixed: boolean; leadRef: ElementRef; constructor(viewContainerRef: ViewContainerRef); ngOnInit(): void; setVisibility: (scrollState: any) => void; setWarpFixedState: (left: any, top: any, scale: any, leadOpacity: any) => void; }