import React from 'react'; export interface MyAudioProps { audioTitle?: string; autoPlay?: string; preloadType?: string; streamUrl?: string; streamType?: string; fileCode?: string; hideType?: string; visible?: boolean; play?: any; pause?: any; style?: React.CSSProperties; backgroundType?: any; appId?: string; getEngineApis?: any; audioStatus: 'play' | 'pasue' | 'toggle'; } declare const Audio: React.FC; export default Audio;