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