import { ComponentInterface } from "../../../stencil-public-runtime"; export declare class MobileChat implements ComponentInterface { /** * Выбираем какой контент показывать * */ showContent: string; /** * массив данных для диалогов * */ dialogs: { id: number; img: string; name: string; mess: string; time: { created: Date; }; newMessage: number; category: string; online: boolean; }[]; /** * массив данных для контактов * */ contacts: { id: number; img: string; name: string; mess: string; time: { created: Date; }; category: string; online: boolean; }[]; /** * массив данных личных диалогово * */ message: import("../../..").ChatMessage[]; /** * click to Link * */ clickToLink({ detail }: { detail: any; }): any; /** * click to Link * */ clickToDialog({ detail }: { detail: any; }): any; /** * click to Link * */ clickToContact({ detail }: { detail: any; }): any; /** * Click to category filter * */ clickToCategory({ detail }: { detail: any; }): any; /** * Поиск контактов * */ searchContact(e: any): any; /** * Поиск среди диалогов * */ searchDialogs(e: any): any; /** * Поиск среди диалогов * */ searchPersonalMessages(e: any): any; /** * click to add dialog * */ clickToAddDialog(): void; /** * click to click To Show Dialogs * */ clickToShowDialogs(): void; /** * click to click To Show Contacts * */ clickToShowContacts(): void; /** * click to click To Show MenuBar * */ clickToShowMenuBar(): void; /** * click to click To Show MenuBar * */ clickToUserProfile(): void; cancelSearchPersonal(): void; render(): any; componentWillLoad(): Promise | void; clickToShowDialogsHandler(): void; clickToShowFoldersHandler(): void; /** * * */ clickOnUserProfile(): void; /** * * */ createFolderHandler(e: any): any; /** * Метод для вывода определенного контента * */ getContent(content: any): any; }