import React from 'react'; import type { SaleDetailContext, SaleDetailModuleConfig } from '../../../../types'; import './index.less'; interface SummaryProps { context: SaleDetailContext; moduleConfig?: SaleDetailModuleConfig; /** 两栏模式下由外层在右列单独渲染金额明细,这里跳过内联渲染。 */ hideFinancialSections?: boolean; variant?: string; onOpenCustomerTab?: () => void; onOpenNotesTab?: () => void; } export declare function Summary({ context, moduleConfig, hideFinancialSections, variant, onOpenCustomerTab, onOpenNotesTab, }: SummaryProps): React.JSX.Element; export {};