import * as react_jsx_runtime from 'react/jsx-runtime';
import { CSSProperties } from 'react';

type AudioPlayerProps = {
    blob: Blob;
    url?: string;
    duration: number;
    style?: CSSProperties;
};
declare function AudioPlayer(props: AudioPlayerProps): react_jsx_runtime.JSX.Element;

export { AudioPlayer as default };
