import { OnInit } from '@angular/core'; export declare class Chat implements OnInit { messages: any[]; default_profile_img: string; other_img: string; date_format: string; name_format: string; show_profile_img: string; show_preview_img: boolean; use_icons: boolean; history_height: string; new_message_position: string; default_other_name: string; channels: string[]; _channels: Object; constructor(); ngOnInit(): void; addMessage(value: any): void; onClick(): void; } export declare class ChatModule { }