import { ComponentInterface, EventEmitter } from "../../../stencil-public-runtime"; import { ChatCategoryInterface, ChatDialogInterface } from "../../../index"; export declare class SAdamDialogs implements ComponentInterface { /** * Массив с элементами диалога */ dialogs: ChatDialogInterface[]; /** * Тема для модульного/мобильного чата * */ theme: "mobile" | "module" | "comp"; /** * массив категорий диалогов */ categories: ChatCategoryInterface[]; /** * Cобытие клика по диалогу */ clickToDialog: EventEmitter; /** * Поиск по контактам * */ searchDialogs: EventEmitter; /** * clock on Category * */ clickToCategory: EventEmitter; render(): any; }