import type { OpenCodeContext } from "../../types/plugin"; import type { LaunchInput } from "./types"; export type SpawnResult = { sessionId: string; }; export declare function spawnBackgroundSession(ctx: OpenCodeContext, input: LaunchInput): Promise;