import type { TrackHTMLAttributes } from 'react';
export type AudioPlayerProps = {
src: string;
type?: string;
maxPlaybackSpeed?: number;
minPlaybackSpeed?: number;
playbackSpeedStep?: number;
download?: boolean;
playLabel?: string;
pauseLabel?: string;
audioPlaybackRangeLabel?: string;
changePlaybackSpeedLabel?: string;
downloadAudioFileLabel?: string;
trackProps?: TrackHTMLAttributes;
};
declare const AudioPlayer: import("react").ForwardRefExoticComponent>;
export default AudioPlayer;
//# sourceMappingURL=AudioPlayer.d.ts.map