import { ComponentInterface } from "../../../stencil-public-runtime"; import { ChatUserActionStatusState, ChatUserPresenceState } from "../../../index"; export declare class UserStatus implements ComponentInterface { /** * Тема для блока * */ theme: "comp" | "mobile" | "module"; /** * */ chatActionState: ChatUserActionStatusState; /** * */ chatPresenceState: ChatUserPresenceState; render(): any; /** * Метод выобра темы для ПК/Мобильная/Модульной версии * */ getClassForHost(): { [x: string]: boolean; }; }