import React from 'react'; import './index.less'; export interface PisellList01Props { dataSource?: any[]; showSearch: boolean; showCategory: boolean; placeholder?: string; renderItem?: (item: any, index: number) => React.ReactNode; className?: string; style?: React.CSSProperties; onChange?: (anchor: string) => void; onSearch?: (value: any) => void; isShowEmpty?: boolean; description?: any; } declare const PisellList01: React.FC; export default PisellList01;