import React from "react"; //#region src/components/pisellSelectCustomerModal/CustomerCard/index.d.ts interface CustomerCardProps { className?: string; onClickItem: (value?: any) => void; customer?: any; showIcon?: boolean; onRemove?: (value?: any) => void; customIcon?: React.ReactNode; } //#endregion export { CustomerCardProps };