/** * Starts the development server. * * @param {Object} options * @param {Object} options.spinner A CLI spinner which indicates progress. * @param {boolean} options.update If true, update sources. * @param {string} options.xdebug The Xdebug mode to set. * @param {boolean} options.scripts Indicates whether or not lifecycle scripts should be executed. * @param {boolean} options.debug True if debug mode is enabled. */ export default function start({ spinner, update, xdebug, scripts, debug, }: { spinner: Object; update: boolean; xdebug: string; scripts: boolean; debug: boolean; }): Promise; export type WPConfig = import("../config").WPConfig;