import type { HardhatRuntimeEnvironment } from "hardhat/types";
export default function transferAxie(taskArgs: {
    address: string;
    axie: string;
}, hre: HardhatRuntimeEnvironment): Promise<any>;
