import React from "react";
interface NetworkAllocation {
    name: string;
    chainId: number;
    amount: string;
}
interface TokenAllocationProps {
    selectedNetworks: string[];
    fromToken: any;
    onBack: () => void;
    onDone: (allocations: NetworkAllocation[]) => void;
    initialAllocations?: NetworkAllocation[];
}
declare const TokenAllocation: React.FC<TokenAllocationProps>;
export default TokenAllocation;
