import React from 'react'; import './index.less'; interface TimelineSectionProps { code: string; tag: string; timezone: string; apiPrefix?: '/shop' | '/h5'; isTerminalEnv?: boolean; interaction?: any; /** * 与列表/详情同步的字段:充值等操作后 code/tag 不变,但余额或有效期会变, * 纳入 refreshDeps 才能重新拉取流水。 */ balance?: string | number | null; expireDate?: string | null; } declare const TimelineSection: (props: TimelineSectionProps) => React.JSX.Element; export default TimelineSection;