/** * @description * The wrapper that starts/stops a docker compose file around a callback. * Performs docker compose up, then runs `callback` function and after its promise fulfilled, * runs docker compose down. */ export declare function withDockerCompose(dockerComposeYmlPath: string, callback: () => Promise, printDebug?: boolean, composeOptions?: string[]): Promise; //# sourceMappingURL=withDockerCompose.d.ts.map