import type { StepHandler } from '.';
/**
* @inheritDoc writeFile
* @hasRunnableExample
* @landingPage /test.php
* @example
*
*
* {
* "step": "writeFile",
* "path": "/wordpress/test.php",
* "data": ""
* }
*
*/
export interface WriteFileStep {
step: 'writeFile';
/** The path of the file to write to */
path: string;
/** The data to write */
data: FileResource | string | Uint8Array;
}
/**
* Writes data to a file at the specified path.
*/
export declare const writeFile: StepHandler>;