import React from 'react'; import type { useSalesSdkCustomer } from '../../hooks/useSalesSdkCustomer'; export interface CustomerPanelProps { customer: ReturnType; } /** * 客户信息展示面板:原 SalesSdkDemoContent 内嵌实现的复用版。 * 仅渲染 customer.selected;不消费写操作(select / loadList 仍由 step 触发)。 */ export declare const CustomerPanel: React.FC;