/** * DbSearchHistory - 搜索历史组件 * * 特性: * - 集成 DbSearchBar 搜索栏 * - 支持搜索历史记录展示、单个删除、全部清空 * - 支持热门搜索/搜索发现(含刷新和查看更多) * - 支持返回按钮 * - 支持自定义标题文案 * - 标签样式可自定义 */ import React from 'react'; import type { DbSearchHistoryProps } from './DbSearchHistory.types'; export declare const DbSearchHistory: React.FC; export default DbSearchHistory; export type { DbSearchHistoryProps, SearchHistoryItem, HotSearchItem, } from './DbSearchHistory.types';