/**
 * Retrieves the appropriate copy command for the specified platform.
 *
 * @param {string} platform - The process platform (e.g., "darwin", "win32", "linux").
 * @returns {string} The copy command for the specified platform.
 */
declare const getCopyCommand: (platform?: string) => string;
export default getCopyCommand;
