import React from 'react'; import type { BigSaleProps } from './types'; import './index.less'; /** * BigSale 入口:只创建 SalesSdkProvider 运行环境,UI 由 ResponsiveBigSaleBase 承载。 */ declare const BigSale: React.FC; export type { BigSaleBaseProps, BigSaleContext, BigSaleMode, BigSaleProps, BigSaleTemplate, } from './types'; export { BigSale }; export default BigSale;