import React from 'react'; type BrandStripItem = { /** 品牌名称,用于默认展示和辅助文本 */ name: string; /** 品牌 Logo 的图片地址,默认是内置的文字 Logo */ logo?: string; /** 自定义 alt 文案 */ alt?: string; /** 跳转链接,可选 */ link?: string; }; type BrandStripProps = { data: any; /** 外层容器 class */ className?: string; /** 每个卡片的 class */ itemClassName?: string; }; /** * BrandStrip - 品牌徽标展示条 * * @description 展示品牌 Logo 列表的组件,支持自定义标题、Logo 和跳转链接 */ declare const BrandStrip: React.FC; export type { BrandStripProps, BrandStripItem }; export default BrandStrip;