import { z } from "zod"; export declare const firstRunResultSchema: z.ZodObject<{ schemaVersion: z.ZodString; timestamp: z.ZodString; repoType: z.ZodString; targetPosture: z.ZodString; generatedArtifacts: z.ZodArray; primaryNextCommand: z.ZodString; briefPath: z.ZodString; recoveryGuidance: z.ZodNullable; partialSuccess: z.ZodBoolean; }, "strip", z.ZodTypeAny, { schemaVersion: string; targetPosture: string; repoType: string; timestamp: string; generatedArtifacts: string[]; primaryNextCommand: string; briefPath: string; recoveryGuidance: string | null; partialSuccess: boolean; }, { schemaVersion: string; targetPosture: string; repoType: string; timestamp: string; generatedArtifacts: string[]; primaryNextCommand: string; briefPath: string; recoveryGuidance: string | null; partialSuccess: boolean; }>; export type FirstRunResult = z.infer; export declare function parseFirstRunResult(value: unknown): FirstRunResult; //# sourceMappingURL=first-run-result.d.ts.map