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