import { z } from 'zod'; /** Partial ground-truth for auth detection — only fields stated with confidence. */ export declare const GoldenSiteExpectedSchema: z.ZodObject<{ hasAuth: z.ZodOptional; type: z.ZodOptional>; leaksPrompt: z.ZodOptional; }, "strict", z.ZodTypeAny, { type?: "unknown" | "form-login" | "oauth" | "magic-link" | "none" | undefined; hasAuth?: boolean | undefined; leaksPrompt?: boolean | undefined; }, { type?: "unknown" | "form-login" | "oauth" | "magic-link" | "none" | undefined; hasAuth?: boolean | undefined; leaksPrompt?: boolean | undefined; }>; export declare const GoldenSiteSchema: z.ZodObject<{ id: z.ZodString; url: z.ZodString; name: z.ZodString; rationale: z.ZodOptional; coverage_tags: z.ZodArray; expected: z.ZodObject<{ hasAuth: z.ZodOptional; type: z.ZodOptional>; leaksPrompt: z.ZodOptional; }, "strict", z.ZodTypeAny, { type?: "unknown" | "form-login" | "oauth" | "magic-link" | "none" | undefined; hasAuth?: boolean | undefined; leaksPrompt?: boolean | undefined; }, { type?: "unknown" | "form-login" | "oauth" | "magic-link" | "none" | undefined; hasAuth?: boolean | undefined; leaksPrompt?: boolean | undefined; }>; }, "strip", z.ZodTypeAny, { expected: { type?: "unknown" | "form-login" | "oauth" | "magic-link" | "none" | undefined; hasAuth?: boolean | undefined; leaksPrompt?: boolean | undefined; }; name: string; id: string; url: string; coverage_tags: string[]; rationale?: string | undefined; }, { expected: { type?: "unknown" | "form-login" | "oauth" | "magic-link" | "none" | undefined; hasAuth?: boolean | undefined; leaksPrompt?: boolean | undefined; }; name: string; id: string; url: string; coverage_tags: string[]; rationale?: string | undefined; }>; export declare const GoldenManifestSchema: z.ZodObject<{ schemaVersion: z.ZodLiteral<1>; coverage_tags: z.ZodArray; sites: z.ZodArray; coverage_tags: z.ZodArray; expected: z.ZodObject<{ hasAuth: z.ZodOptional; type: z.ZodOptional>; leaksPrompt: z.ZodOptional; }, "strict", z.ZodTypeAny, { type?: "unknown" | "form-login" | "oauth" | "magic-link" | "none" | undefined; hasAuth?: boolean | undefined; leaksPrompt?: boolean | undefined; }, { type?: "unknown" | "form-login" | "oauth" | "magic-link" | "none" | undefined; hasAuth?: boolean | undefined; leaksPrompt?: boolean | undefined; }>; }, "strip", z.ZodTypeAny, { expected: { type?: "unknown" | "form-login" | "oauth" | "magic-link" | "none" | undefined; hasAuth?: boolean | undefined; leaksPrompt?: boolean | undefined; }; name: string; id: string; url: string; coverage_tags: string[]; rationale?: string | undefined; }, { expected: { type?: "unknown" | "form-login" | "oauth" | "magic-link" | "none" | undefined; hasAuth?: boolean | undefined; leaksPrompt?: boolean | undefined; }; name: string; id: string; url: string; coverage_tags: string[]; rationale?: string | undefined; }>, "many">; }, "strip", z.ZodTypeAny, { schemaVersion: 1; coverage_tags: string[]; sites: { expected: { type?: "unknown" | "form-login" | "oauth" | "magic-link" | "none" | undefined; hasAuth?: boolean | undefined; leaksPrompt?: boolean | undefined; }; name: string; id: string; url: string; coverage_tags: string[]; rationale?: string | undefined; }[]; }, { schemaVersion: 1; coverage_tags: string[]; sites: { expected: { type?: "unknown" | "form-login" | "oauth" | "magic-link" | "none" | undefined; hasAuth?: boolean | undefined; leaksPrompt?: boolean | undefined; }; name: string; id: string; url: string; coverage_tags: string[]; rationale?: string | undefined; }[]; }>; export type GoldenSiteExpected = z.infer; export type GoldenSite = z.infer; export type GoldenManifest = z.infer; //# sourceMappingURL=golden-manifest.schema.d.ts.map