import type { StepHandler } from '.'; /** * @inheritDoc mv * @hasRunnableExample * @landingPage /index2.php * @example * * * { * "step": "mv", * "fromPath": "/wordpress/index.php", * "toPath": "/wordpress/index2.php" * } * */ export interface MvStep { step: 'mv'; /** Source path */ fromPath: string; /** Target path */ toPath: string; } /** * Moves a file or directory from one path to another. */ export declare const mv: StepHandler;