import type { EnvironmentConfiguration } from "../../config/types.js"; import type { ConnectOptions } from "../../serialization/tasks/types.js"; import type { Logger } from "../../shared/logger.js"; type ResolveDeployLookupInput = { options: ConnectOptions; runWizard: boolean; deployToken?: string; updated: EnvironmentConfiguration; existing: EnvironmentConfiguration; baseEnv: EnvironmentConfiguration; host?: string; projectSelection?: string; environmentSelection?: string; logger: Logger; }; type ResolveDeployLookupResult = { host?: string; updated: EnvironmentConfiguration; }; export declare const resolveDeployLookup: (input: ResolveDeployLookupInput) => Promise; export {};