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