/** * @license * Copyright 2025 Qwen Team * SPDX-License-Identifier: Apache-2.0 */ /** * @fileoverview Lightweight footer for agent tabs showing approval mode * and context usage. Mirrors the main Footer layout but without * main-agent-specific concerns (vim mode, shell mode, exit prompts, etc.). */ import { ApprovalMode } from '@aetherai/aether-core'; import type React from 'react'; interface AgentFooterProps { approvalMode: ApprovalMode | undefined; promptTokenCount: number; contextWindowSize: number | undefined; terminalWidth: number; } export declare const AgentFooter: React.FC; export {};