/** * `rip artifact inspect ` — SDK-shaped discovery surface for a * text-supporting artifact. * * Wraps `GET /v0/operator/artifacts/:publicId/inspect`. Returns the same * payload served to the `inspect_artifact` MCP tool: title, description, * `recommendedBinding` (kind: 'artifact'), `editable`, and a ≤2 KB UTF-8 * `contentPreview` for markdown / html / code / text / json artifacts. Non- * text types are rejected by the backend with `INVALID_ARTIFACT_TYPE`. * * Output: JSON in `--json` mode (pass-through `{ ok, data }` envelope); in * human mode a compact summary plus the first 200 chars of the preview. */ export declare function artifactInspect(identifier: string): Promise;