import React from 'react'; import type { SalesSdkCartContextValue, SalesSdkContextValue, SalesSdkCustomerContextValue, ScanOrderSummary, ProductData } from '../../types'; export interface RawSnapshotPanelProps { sales: SalesSdkContextValue; cart: SalesSdkCartContextValue; customer: SalesSdkCustomerContextValue; summary: ScanOrderSummary | null; products: ProductData[]; } /** * 原始数据快照面板:四列 JSON 展示 tempOrder / customer / cart.items / products。 */ export declare const RawSnapshotPanel: React.FC;