import * as React from 'react'; import './index.scss'; export interface SearchHistoryListProps { /** * 是否有图标 */ isLeftIcon?: string; /** * 图标 */ iconSrc?: string; /** * 数据 */ dataList: DataListProps[]; /** * 是否可删除 */ isShowDelete: boolean; /** * 子元素 */ children: React.ReactNode; } interface DataListProps { content: string; } declare const SearchHistoryList: React.FC; export default SearchHistoryList;