import { EventEmitter } from '@angular/core'; import { Icon } from '../letterhead.model'; export declare class LetterheadHeaderComponent { _isPrinting: boolean; /** * Indicates whether to render the version for display * on screen or the version for printing. */ isPrinting: boolean; /** * List of icons to be displayed above page header. */ iconList: Icon[]; _rightMain: string; _rightMainWithLabel: { label: string; value: string; }; displayDefaultTemplate: boolean; /** * The main header of the page. Can be a simple string or * and object containing a label and a value. */ rightMain: any; /** * The subheader of the page. */ rightSub: string; /** * Identifies page in DOM. */ headerId: string; /** * The name of the icon clicked. */ iconClick: EventEmitter; /** * Emits a string containing the name of the icon clicked. * @param iconName the name of the icon clicked */ onSelectIcon(iconName: string): void; }