import { ClassDeclaration, Project } from "ts-morph";
/**
 * Finds a class by its import path in the original source file.
 * @param cls The class declaration where the dependency is used.
 * @param className The name of the dependency class.
 * @returns The class declaration or undefined if not found.
 */
export declare function findClassByImport(cls: ClassDeclaration, className: string, project: Project): ClassDeclaration | undefined;
export declare function hasDecorator(filePath: string, className: string, decoratorName: string, project?: Project): boolean;
