import type { BaseProbeResult } from "agdi/plugin-sdk/channel-contract"; export type SlackProbe = BaseProbeResult & { status?: number | null; elapsedMs?: number | null; bot?: { id?: string; name?: string; }; team?: { id?: string; name?: string; }; }; export declare function probeSlack(token: string, timeoutMs?: number): Promise;