import React from "react";
interface NetworkInfo {
    name: string;
    icon: string;
}
interface NetworkAllocation {
    name: string;
    chainId: number;
    amount: string;
}
declare function SelectNetwork({ availableNetworks, selectedNetworksPay, setSelectedNetworksPay, fromToken, onBack, onDone, type, }: {
    availableNetworks: NetworkInfo[];
    selectedNetworksPay: NetworkAllocation[];
    setSelectedNetworksPay: (networks: NetworkAllocation[]) => void;
    fromToken: any;
    onBack: () => void;
    onDone: (networks: NetworkAllocation[]) => void;
    type?: "SWAP" | "TRANSFER";
}): React.JSX.Element;
export default SelectNetwork;
