import type { RemoteClawConfig } from "../../config/config.js"; import type { SessionEntry, SessionScope } from "../../config/sessions.js"; import type { VerboseLevel } from "../thinking.js"; import type { ReplyPayload } from "../types.js"; import type { CommandContext } from "./commands-types.js"; export declare function buildStatusReply(params: { cfg: RemoteClawConfig; command: CommandContext; sessionEntry?: SessionEntry; sessionKey: string; parentSessionKey?: string; sessionScope?: SessionScope; storePath?: string; provider: string; model: string; resolvedVerboseLevel: VerboseLevel; isGroup: boolean; defaultGroupActivation: () => "always" | "mention"; contextTokens?: number; resolvedReasoningLevel?: unknown; resolvedElevatedLevel?: unknown; mediaDecisions?: unknown; }): Promise;