/** * Displays the Docker & PHP logs on the given environment. * * @param {Object} options * @param {Object} options.environment The environment to run the command in (develop or tests). * @param {Object} options.watch If true, follow along with log output. * @param {Object} options.spinner A CLI spinner which indicates progress. * @param {boolean} options.debug True if debug mode is enabled. */ export default function logs({ environment, watch, spinner, debug }: { environment: Object; watch: Object; spinner: Object; debug: boolean; }): Promise;