import { ShowtimeActionItem } from './ShowtimeActionBar.types'; /** * 规范化外部传入的操作项,保证模板层拿到的是完整可渲染数据。 */ export declare function normalizeActionItems(items?: ShowtimeActionItem[]): ShowtimeActionItem[]; /** * 关注按钮文案由外层状态驱动,但内部统一从这里取,避免模板里塞判断。 */ export declare function resolveFollowLabel(active: boolean, followLabel: string, followedLabel: string): string;