import type { OpenClawConfig as ClawdbotConfig } from "openclaw/plugin-sdk/config-contracts"; import type { RuntimeEnv } from "openclaw/plugin-sdk/runtime"; import type { HistoryEntry } from "openclaw/plugin-sdk/reply-history"; import type { MeetBot, MsgContent } from "@meet-im/meet-bot-jssdk"; import type { ResolvedMeetAccount, MeetMessageContext } from "./types.js"; export declare function handleMeetMessage(params: { cfg: ClawdbotConfig; msg: MsgContent; botUserId: string; runtime?: RuntimeEnv; accountId: string; account: ResolvedMeetAccount; bot: MeetBot; groupHistories: Map; quoteMsgMap?: Record; ctx?: MeetMessageContext; }): Promise;