* {
* "step": "mkdir",
* "path": "/wordpress/my-new-folder"
* }
*
*/
export interface MkdirStep {
step: 'mkdir';
/** The path of the directory you want to create */
path: string;
}
/**
* Creates a directory at the specified path.
*/
export declare const mkdir: StepHandler