import { Signer } from "ethers";
import { type GasPriceOptions } from "../utils";
export interface CancelMarketplaceOrderOptions extends GasPriceOptions {
    /** Pre-fetched order data. If not provided, will be fetched from the API */
    order?: any;
}
export default function cancelMarketplaceOrder(axieId: number, signer: Signer, skyMavisApiKey: string, options?: CancelMarketplaceOrderOptions): Promise<any>;
