import React from 'react'; import './VenueWallMarquee.less'; export interface NoteTickerProps { text: string; color: string; /** 跑完一整段所需秒数 */ duration?: number; shouldMarquee: boolean; } /** * 底部说明条:短文案省略静态展示,长文案无缝跑马灯(多段 copy 与 `VenueWallMarquee.less` 中 -33.333% 动画配套)。 * 系统「减少动态效果」时强制静态展示;跑马灯区对读屏 `aria-hidden` 避免重复朗读。 */ export declare const NoteTicker: React.NamedExoticComponent;