/** * Code Duplications Service * SOLID Principles: Single Responsibility - Handle code duplication operations only */ import { ICodeDuplicationsService, IDatabaseConnection } from '../interfaces'; export declare class CodeDuplicationsService implements ICodeDuplicationsService { private db; constructor(db: IDatabaseConnection); getDuplications(projectId: string, filters?: any): Promise; saveDuplications(projectId: string, data: any[]): Promise; deleteDuplications(projectId: string): Promise; getDuplicationStats(projectId: string): Promise; } //# sourceMappingURL=code-duplications-service.d.ts.map