/** * `rip mount inspect ` — SDK-shaped discovery surface for a mount. * * Wraps `GET /v0/operator/mounts/:mountId/inspect`. Returns the same payload * served to the `inspect_mount` MCP tool: mount metadata + per-table * schema, ≤5 sample rows, recommended binding, and `window.tokenrip.tables` * SDK examples — no raw `/v0/...` URLs surface to the caller. * * Output: JSON in `--json` mode (pass-through `{ ok, data }` envelope); in * human mode a compact summary suitable for terminal use. The AI consumer is * the primary audience — when in doubt prefer `--json` for programmatic use. */ export declare function mountInspect(mountId: string): Promise;