import type { BackgroundJob } from '../../agent/background-registry.js'; export type BackgroundItem = { kind: 'subagent'; job: BackgroundJob; }; export declare function itemId(item: BackgroundItem): string; export declare function itemStartedAt(item: BackgroundItem): number; export declare function itemIsRunning(item: BackgroundItem): boolean;