import React from 'react';
interface AudioPlayerProps {
prefix: string;
msg: {
idClient: string;
flow: string;
};
url: string;
dur: number;
text?: string;
style?: React.CSSProperties;
}
declare const AudioPlayer: React.FC<AudioPlayerProps>;
export default AudioPlayer;