@kanalabs/kana-widget-v2
Version:
Kana Widget for cross-chain bridging and swap.
12 lines (11 loc) • 469 B
TypeScript
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;