murmuraba
Version:
Real-time audio noise reduction with advanced chunked processing for web applications
20 lines • 621 B
TypeScript
import React from 'react';
import './synced-waveforms.css';
interface ISyncedWaveformsProps {
originalAudioUrl?: string;
processedAudioUrl?: string;
isPlaying?: boolean;
onPlayingChange?: (playing: boolean) => void;
className?: string;
'aria-label'?: string;
disabled?: boolean;
showVolumeControls?: boolean;
showPlaybackControls?: boolean;
originalLabel?: string;
processedLabel?: string;
originalColor?: string;
processedColor?: string;
}
export declare const SyncedWaveforms: React.FC<ISyncedWaveformsProps>;
export {};
//# sourceMappingURL=synced-waveforms.d.ts.map