import { spawn } from '@socketsecurity/registry/lib/spawn'; import { Spinner } from '@socketsecurity/registry/lib/spinner'; import type { EnvDetails } from './package-environment.mts'; type SpawnOption = Exclude[2], undefined>; export type AgentInstallOptions = SpawnOption & { args?: string[] | readonly string[] | undefined; spinner?: Spinner | undefined; }; export type AgentSpawnResult = ReturnType; export declare function runAgentInstall(pkgEnvDetails: EnvDetails, options?: AgentInstallOptions | undefined): AgentSpawnResult; export {}; //# sourceMappingURL=agent.d.mts.map