import { OnInit } from '@angular/core'; import { IChatMessageOption } from '../../chat-view.component'; export declare class ChatHeaderComponent implements OnInit { /** * Input property to set title of chat header. Defualt: 'Chat View' * @memberof ChatHeaderComponent */ title: any; /** * Input property to set chat header styling options. * @type {IChatMessageOption} * @memberof ChatHeaderComponent */ headerOptions: IChatMessageOption; /** *Creates an instance of ChatHeaderComponent. * @memberof ChatHeaderComponent */ constructor(); ngOnInit(): void; }