import React from 'react'; import './index.less'; interface CustomerListProps { value: any; onChange: (value: any) => void; phone: string; customerOrigin?: any; loading: boolean; onLoadMore: () => void; setPage: (page: 'create') => void; } declare const CustomerList: (props: CustomerListProps) => React.JSX.Element; export default CustomerList;