export interface SurveyClaim { source: "doc" | "extraction"; area: "product" | "behaviour" | "brand" | "architecture" | "data"; statement: string; status: "unverified" | "verified"; evidence: Record; doc_name?: string; } export interface SurveyOutput { generated_at: string; repo_head: string | null; claims: SurveyClaim[]; skipped: string[]; } export declare function runSurvey(repoRoot: string, now?: Date): SurveyOutput; export declare function writeSurvey(repoRoot: string, out: SurveyOutput): string; //# sourceMappingURL=survey.d.ts.map