import type { AURAConfig } from "../config/config.js"; type SessionDepthEntry = { sessionId?: unknown; spawnDepth?: unknown; spawnedBy?: unknown; }; export declare function getSubagentDepthFromSessionStore(sessionKey: string | undefined | null, opts?: { cfg?: AURAConfig; store?: Record; }): number; export {};