/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import React from 'react'; import type { HistoryItem } from '../types.js'; import { Config } from '@qwen-code/qwen-code-core'; import { SlashCommand } from '../commands/types.js'; interface HistoryItemDisplayProps { item: HistoryItem; availableTerminalHeight?: number; terminalWidth: number; isPending: boolean; config?: Config; isFocused?: boolean; commands?: readonly SlashCommand[]; } export declare const HistoryItemDisplay: React.FC; export {};