import React from 'react'; export interface AudioObjectType { url: string; autoplay?: boolean; } export interface LLAudioPlayerProps { audio: string | AudioObjectType | Array; timeView?: boolean; autoplay?: boolean; style?: React.CSSProperties; listFirstIndex?: number; audioGetErrorMsg?: string; }