import { RelatedLocalFileHint, RepoProfile } from '../shared/types'; import { StorageService } from '../storage/storage.service'; export declare class RepoProfileService { private readonly storageService; constructor(storageService: StorageService); getProfile(rootDir?: string): Promise; findRelatedFiles(filePaths: string[] | undefined, packageName: string, topic: string | undefined): string[]; findRelatedFileHints(filePaths: string[] | undefined, packageName: string, topic: string | undefined): RelatedLocalFileHint[]; private detectFrameworks; private discoverSourceFiles; }