import React from 'react'; import './style.scss'; export interface AudioPlayerProps { /** Audio source URL or blob */ src?: string | Blob; /** Whether the player is in streaming mode */ isStreaming?: boolean; /** Whether to show download button */ showDownload?: boolean; /** Download filename */ downloadFileName?: string; /** Whether to autoplay when src changes */ autoPlay?: boolean; /** Whether to show controls */ controls?: boolean; /** Callback when playback starts */ onPlay?: () => void; /** Callback when playback pauses */ onPause?: () => void; /** Callback when playback ends */ onEnded?: () => void; /** Custom className */ className?: string; } export declare const AudioPlayer: React.FC; //# sourceMappingURL=AudioPlayer.d.ts.map