import { z } from "zod"; export declare const onboardingBriefSchema: z.ZodObject<{ schemaVersion: z.ZodString; generatedAt: z.ZodString; repoType: z.ZodString; detectedLanguages: z.ZodArray; detectedFrameworks: z.ZodArray; keyBoundaries: z.ZodArray; selectedTargets: z.ZodArray; selectedProfile: z.ZodString; recommendedBundles: z.ZodArray; primaryWorkflowRecommendation: z.ZodString; nextBestCommand: z.ZodString; alternateCommands: z.ZodArray; knownCautions: z.ZodArray; headline: z.ZodString; }, "strip", z.ZodTypeAny, { schemaVersion: string; generatedAt: string; repoType: string; detectedLanguages: string[]; detectedFrameworks: string[]; keyBoundaries: string[]; selectedTargets: string[]; selectedProfile: string; recommendedBundles: string[]; primaryWorkflowRecommendation: string; nextBestCommand: string; alternateCommands: string[]; knownCautions: string[]; headline: string; }, { schemaVersion: string; generatedAt: string; repoType: string; detectedLanguages: string[]; detectedFrameworks: string[]; keyBoundaries: string[]; selectedTargets: string[]; selectedProfile: string; recommendedBundles: string[]; primaryWorkflowRecommendation: string; nextBestCommand: string; alternateCommands: string[]; knownCautions: string[]; headline: string; }>; export type OnboardingBrief = z.infer; export declare function parseOnboardingBrief(value: unknown): OnboardingBrief; //# sourceMappingURL=onboarding-brief.d.ts.map