import type { LoadedStudyAnalysis } from "./study-analysis.js"; /** Owned file names in normalized run-relative paths, not directory ownership. * Legacy evidence under analysis/ still follows ordinary evidence policy. */ export declare function isStudyAnalysisRecordPath(relativePath: string): boolean; /** Check the exact in-memory snapshot being projected; a prior filesystem scan cannot approve a later write. */ export declare function studyAnalysisSharingProblems(loaded: LoadedStudyAnalysis): { sensitive: boolean; unverified: boolean; }; /** Unsafe generated text is quarantined without hiding the original recording. */ export declare function projectShareCheckedAnalysis(loaded: LoadedStudyAnalysis): LoadedStudyAnalysis;