export interface PipelineResult { cacheCount: number; rawCount: number; sourcesCount: number; missingRaw: string[]; missingSources: string[]; ok: boolean; } export declare function checkProjectPipeline(project: string): PipelineResult; export interface RegistrationResult { kbExists: boolean; projectPage: boolean; inIndex: boolean; inRoadmap: boolean; inLog: boolean; } export declare function checkProjectRegistration(project: string): RegistrationResult; export interface KbBasicsResult { kbExists: boolean; agentsMdMatch: boolean; requiredFiles: Array<{ path: string; exists: boolean; }>; templateLeaks: string[]; sellerProfileEmpty: string[]; } export declare function checkKbBasics(): KbBasicsResult; //# sourceMappingURL=health-check.d.ts.map