import type { ResolvedMeetAccount } from "./types.js"; export type MeetProbeResult = { ok: boolean; error?: string; botId?: string; }; export declare function probeMeet(account: ResolvedMeetAccount): Promise; export declare function clearProbeCache(accountId?: string): void;