export interface OpenChatParams { corpId?: string; chatId?: string; userId: string; text?: string; } declare function openChat(params: OpenChatParams): Promise<{}>; declare namespace openChat { var version: { android: string; ios: string; pc: string; }; } export default openChat;