import { type WPNowOptions } from './config.ts'; import phpCli from '../php-cli/main.js'; /** * Execute a PHP cli given its parameters. * * @param phpArgs - Arguments to pass to the PHP cli. The first argument should be the string 'php'. * @param options - Optional configuration object for WPNow. Defaults to an empty object. * @returns - Returns a Promise that resolves to an object containing * the exit name and status (0 for success). * @throws - Throws an error if the first element in phpArgs is not the string 'php'. */ export { phpCli as executePHP }; export declare function _executePHP(phpArgs: string[], options?: WPNowOptions): Promise;