* {
* "step": "rmdir",
* "path": "/wordpress/wp-admin"
* }
*
*/
export interface RmdirStep {
step: 'rmdir';
/** The path to remove */
path: string;
}
/**
* Removes a directory at the specified path.
*/
export declare const rmdir: StepHandler