import type { HardhatRuntimeEnvironment } from "hardhat/types";
export default function listAxie(taskArgs: {
    axie: string;
    basePrice: string;
    endedPrice?: string;
    duration?: string;
    gasLimit?: number;
}, hre: HardhatRuntimeEnvironment): Promise<boolean>;
