/**
 * Copies dependencies required for the project to the infrastructure directory.
 *
 * @param project - The LimgenProject instance for which dependencies are to be copied.
 * @param opts - Options to be passed to the project's dependsOn method.
 * @returns A promise that resolves when the dependencies have been copied.
 */
export declare function copyFileDependencies(files: string[]): Promise<void>;
export declare function mkdirp(dir: string): Promise<void>;
export declare function fileExists(filePath: string): Promise<boolean>;
