* {
* "step": "rm",
* "path": "/wordpress/index.php"
* }
*
*/
export interface RmStep {
step: 'rm';
/** The path to remove */
path: string;
}
/**
* Removes a file at the specified path.
*/
export declare const rm: StepHandler