import { Project } from 'ts-morph'; /** * Copies all files from the source project to the target project. * * The rel path is used to prefix all file path in the source project * * @param target * @param source * @param relPath * @constructor */ export declare function MergeTsMorphProject(target: Project, source: Project, relPath: string): void;