* {
* "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