import { EventEmitter } from '../../stencil-public-runtime'; import { View } from '../../interfaces/common.interface'; export declare class Header { private static expandIconSrc; private static minimizeIconSrc; private static primary_avatar; private static historyIcon; headerTitle: string; secondaryText: string; iconSvg: string; canGoBack: boolean; isExpanded: boolean; isOnline: boolean; handleEndChat: () => void; profilePicture: string; showHistoryButton: boolean; showEndChatBtn: boolean; previousCard: EventEmitter; close: EventEmitter; toggleExpand: EventEmitter; toggleView: EventEmitter; render(): any; }