/** * Creates a docker-compose config object which, when serialized into a * docker-compose.yml file, tells docker-compose how to run the environment. * * @param {WPConfig} config A wp-env config object. * * @return {Object} A docker-compose config object, ready to serialize into YAML. */ export default function buildDockerComposeConfig(config: WPConfig): Object; export type WPConfig = import("./config").WPConfig; export type WPEnvironmentConfig = import("./config").WPEnvironmentConfig;