import React, { Dispatch, SetStateAction } from "react";
interface AggregatorSettingsModalProps {
    sourceInfo: any;
    targetInfo: any;
    setAggregatorSettingsVisibility: Dispatch<SetStateAction<boolean>>;
    setIsDexModified: Dispatch<SetStateAction<boolean>>;
    handleNoDexSelected: () => void;
}
declare const AggregatorSettingsModal: React.FC<AggregatorSettingsModalProps>;
export default AggregatorSettingsModal;
