import React from 'react'; import './index.scss'; /** * 数据 */ interface DataProps { /** * 地址 */ address?: string; /** * 姓名 */ name?: string; /** * 电话 */ phone?: string; /** * 标签 */ tag?: string; } export interface AddressListProps { /** * 数据 */ dataList?: DataProps[]; /** * 点击事件 * @param e */ onClick?: (e: any) => void; /** * 子节点 */ children: React.ReactChild; /** * 选中项改变事件 */ onSelect?: (index: number) => void; } declare const AddressList: React.FC; export default AddressList;