import type { ConfigWithDefaults } from '../config/index.ts'; import type { EnvironmentResult } from '../environment/index.ts'; type Logger = Pick; interface FinalizeAllOptions { happoConfig: ConfigWithDefaults; environment: EnvironmentResult; logger: Logger; } export declare function finalizeAll({ happoConfig, environment, logger, }: FinalizeAllOptions): Promise; /** * Runs a command with the wrapper and returns the exit code. * * @param dashdashCommandParts The command to run with the wrapper * @param happoConfig The Happo config * @param environment The environment * @param port The port to listen on * @param logger The logger * @returns The exit code of the command */ export default function runWithWrapper(dashdashCommandParts: Array, happoConfig: ConfigWithDefaults, environment: EnvironmentResult, logger: Logger, configFilePath: string, skipJSON?: string): Promise; export {}; //# sourceMappingURL=wrapper.d.ts.map