import ts from 'typescript';
export interface MethodInfo {
    name: string;
    accessedFields: string[];
}
export interface FieldInfo {
    name: string;
    accessedBy: string[];
}
export interface ClassInfo {
    name: string;
    filePath: string;
    methods: MethodInfo[];
    fields: FieldInfo[];
    sourceFile?: ts.SourceFile;
}
/**
 * Generic metric interface that all metrics should implement
 */
export interface Metric {
    name: string;
    calculate(classInfo: ClassInfo): number;
    description: string;
}
