/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ import type { CopyOperation, InstallationContext } from "./types.js"; /** * Execute all copy operations */ export declare function executeCopyOperations(operations: readonly CopyOperation[], packageName: string, context: InstallationContext): Promise; /** * Check if source path exists (for validation) */ export declare function validateSourcePath(sourcePath: string): boolean; //# sourceMappingURL=file-copier.d.ts.map