import type { AgentConfig } from './config.js'; import type { LaunchSpec } from './launch-spec.js'; import type { ResolvedExecPaths } from './sdk.js'; export interface DaemonLaunch { config: AgentConfig; ephemeral: boolean; resolvedExecPaths: ResolvedExecPaths; launchSpec: LaunchSpec | null; launchSpecPath: string | null; } export declare function parseDaemonLaunchArgs(args: string[]): DaemonLaunch;