/** * CEE Decision Review Golden Fixture Example (TypeScript) * * This example shows how a backend or integration test might consume the * golden CEE decision review fixture as a stable, metadata-only exemplar. * * Notes: * - This file is not executed automatically in CI; it is intended as * copy-pastable example code for integrators. * - When consuming the published SDK, replace relative imports such as * "../index.js" with "@olumi/assistants-sdk" and copy the JSON fixture * into your own repo. */ import type { CeeDecisionReviewPayload, CeeEngineStatus, CeeTraceSummary, CeeErrorView } from "../index.js"; export interface GoldenDecisionReviewFixture { review: CeeDecisionReviewPayload; trace: CeeTraceSummary | null; engineStatus: CeeEngineStatus; error: CeeErrorView | null; } /** * Build a simple, CLI-style summary of the golden decision review fixture. * * This helper remains metadata-only: it uses only the structured story, * health, journey, UI flags, trace summary, and engine status. */ export declare function formatGoldenDecisionReviewSummary(input?: GoldenDecisionReviewFixture): string;