export interface Diagnosis { fix: string; confidence: number; } export declare class GhostAlchemist { private model; private host; constructor(); /** * Synthesize context for token savings */ synthesize(context: string, goal: string): Promise; /** * Diagnose a failure and suggest a fix */ diagnoseFailure(error: string, context: string): Promise; } //# sourceMappingURL=GhostAlchemist.d.ts.map