export interface RepeatGuardResult { isRepeat: boolean; similarity: number; previousOutput?: string; suggestion: string; } export declare function recordOutput(output: string, projectRoot: string): void; export declare function checkRepeat(draftOutput: string, projectRoot: string, threshold?: number): RepeatGuardResult; //# sourceMappingURL=RepeatGuard.d.ts.map