import React from 'react'; import './index.less'; export interface CustomerCardProps { className?: string; onClickItem: (value?: any) => void; customer?: any; showIcon?: boolean; onRemove?: (value?: any) => void; customIcon?: React.ReactNode; } declare const CustomerCard: ({ onClickItem, customer, showIcon, customIcon, onRemove, className, }: CustomerCardProps) => React.JSX.Element; export default CustomerCard;