import './index.less'; import React from 'react'; interface Iprops { dataSource: T[]; key: string; title: string; } export default function CustomList({ dataSource, key, title, }: Iprops): React.JSX.Element; export {};