import type { SessionInfo } from "@meet-im/meet-bot-jssdk"; export type SendTypingParams = { accountId: string; chatId: string; chatType: "direct" | "channel"; sessionInfo?: SessionInfo; token?: string; apiEndpoint?: string; }; export type TypingResult = { ok: true; } | { ok: false; reason: "unsupported" | "error"; error?: unknown; }; /** * 发送 typing 指示器 */ export declare function sendTypingMeet(params: SendTypingParams): Promise; /** * 停止 typing 指示器 */ export declare function stopTypingMeet(params: SendTypingParams): Promise;