import type { ElevatedLevel, ReasoningLevel, ThinkLevel, VerboseLevel } from "../auto-reply/thinking.js"; import { type SessionEntry, type SessionScope } from "../config/sessions.js"; import type { OpenClawConfig } from "../config/types.openclaw.js"; import type { MediaUnderstandingDecision } from "../media-understanding/types.js"; import { formatTokenCount as formatTokenCountShared } from "../utils/usage-format.js"; type AgentDefaults = NonNullable["defaults"]>; type AgentConfig = Partial & { model?: AgentDefaults["model"] | string; }; export declare const formatTokenCount: typeof formatTokenCountShared; type QueueStatus = { mode?: string; depth?: number; debounceMs?: number; cap?: number; dropPolicy?: string; showDetails?: boolean; }; export type StatusArgs = { config?: OpenClawConfig; agent: AgentConfig; agentId?: string; runtimeContextTokens?: number; explicitConfiguredContextTokens?: number; sessionEntry?: SessionEntry; sessionKey?: string; parentSessionKey?: string; sessionScope?: SessionScope; sessionStorePath?: string; groupActivation?: "mention" | "always"; resolvedThink?: ThinkLevel; resolvedFast?: boolean; resolvedHarness?: string; resolvedVerbose?: VerboseLevel; resolvedReasoning?: ReasoningLevel; resolvedElevated?: ElevatedLevel; modelAuth?: string; activeModelAuth?: string; usageLine?: string; timeLine?: string; uptimeLine?: string; queue?: QueueStatus; mediaDecisions?: ReadonlyArray; subagentsLine?: string; taskLine?: string; includeTranscriptUsage?: boolean; now?: number; }; export declare const formatContextUsageShort: (total: number | null | undefined, contextTokens: number | null | undefined) => string; export declare function buildStatusMessage(args: StatusArgs): string; export {};