import React from 'react'; import './index.less'; interface PassDetailProps { dataSource?: any | null; customer?: any; platform?: 'pc' | 'h5'; buttonGroupList?: any[][]; showTimeLine?: boolean; onListRefresh?: () => void; } declare const PassDetail: (props: PassDetailProps) => React.JSX.Element | null; export default PassDetail;