import * as React from 'react'; import 'swiper/css'; import 'swiper/css/navigation'; import type { CreditsShelfLayoutMode } from './types.js'; /** * 产品列表组件 Props */ export interface CreditsShelfProductsListProps extends React.HTMLAttributes { /** 布局模式:网格布局或横向滑动 */ layoutMode?: CreditsShelfLayoutMode; /** 子组件(ProductCard 或自定义卡片) */ children: React.ReactNode; } /** * CreditsShelf 产品列表组件 * * @description 支持网格布局和横向滑动两种布局模式 */ declare const CreditsShelfProductsList: React.ForwardRefExoticComponent>; export { CreditsShelfProductsList };