/** * Returns true iff the `superbased` CLI is on PATH and `superbased --version` * exits cleanly within ~3s. Used at plugin init to surface an actionable * error if the user installed the plugin but forgot to install the CLI. */ export declare function checkSuperbasedReachable(): Promise<{ ok: true; version: string; } | { ok: false; reason: string; }>; //# sourceMappingURL=mcp-bridge.d.ts.map