/// import { SelectionProps } from '../../../../types/index.js'; interface Item { id: string; product_id: string; name: string; description: string; image: string; currency: string; amount: number; quantity: number; discount: { type: string; value: number; }; merchant_id: string; } interface OrdersCellSheetProps { selectionProps?: SelectionProps; items: Item[]; } export declare function OrdersCellSheet({ items, selectionProps }: OrdersCellSheetProps): import("react").JSX.Element | null; export {};