import { GenericPlugin } from "wavesurfer.js/dist/base-plugin";
import { PluginDictionary } from "../hooks/useWavesurfer";
declare const getDifference: <GPlug extends GenericPlugin>(arr1: PluginDictionary<GPlug>, arr2: PluginDictionary<GPlug>) => {
    disabled: Record<string, GPlug>;
    enabled: Record<string, GPlug>;
};
export default getDifference;
