/** * Commands that talk to the local IPC socket: list / attach / kill. * `shell` lives in its own file because it's the most prominent command; * the rest are grouped here for compactness. */ export declare function listCommand(): Promise; interface AttachArgs { id: string; } export declare function attachCommand(argv: AttachArgs): Promise; interface KillArgs { id: string; } export declare function killCommand(argv: KillArgs): Promise; export {}; //# sourceMappingURL=sessions-local.d.ts.map