import type { StepHandler } from '.'; /** * @inheritDoc rm * @hasRunnableExample * @landingPage /index.php * @example * * * { * "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;