import type { OpenClawConfig as ClawdbotConfig } from "openclaw/plugin-sdk/config-contracts"; import type { RuntimeEnv } from "openclaw/plugin-sdk/runtime"; export type MonitorMeetOpts = { config?: ClawdbotConfig; runtime?: RuntimeEnv; abortSignal?: AbortSignal; accountId?: string; }; export declare function monitorMeetProvider(opts?: MonitorMeetOpts): Promise; export declare function stopMeetMonitor(accountId?: string): void;