import { z } from "zod"; export declare const TuiRuntimeSnapshotSchema: z.ZodObject<{ version: z.ZodLiteral<1>; projectDir: z.ZodString; updatedAt: z.ZodNumber; activeAgents: z.ZodArray; }, z.core.$strip>>; jobBoard: z.ZodArray; toolCalls: z.ZodNullable; lastTool: z.ZodNullable; }, z.core.$strip>>; loop: z.ZodNullable; goalsDone: z.ZodNumber; goalsTotal: z.ZodNumber; pass: z.ZodNumber; fail: z.ZodNumber; pending: z.ZodNumber; blocked: z.ZodNumber; activeGoal: z.ZodNullable; }, z.core.$strip>>; }, z.core.$strip>; export type TuiRuntimeSnapshot = z.infer; export declare function parseSnapshot(raw: unknown): TuiRuntimeSnapshot | null;