/** * devbox attach — re-enter a running box. * * If the box is running: exec in. If stopped: start it, re-bring display up, * exec in. If no box exists: error. */ import type { LauncherContext } from './context.js'; export declare function attach(ctx: LauncherContext, branch: string): Promise;