import { type JsonRpcProvider } from "ethers";
export declare function getAccountInfo(address: string, provider: JsonRpcProvider): Promise<{
    address: string;
    ronBalance: string;
    wethBalance: string;
    usdcBalance: string;
    allowance: any;
    isApprovedForAll: any;
    axieIds: number[];
}>;
export declare function apiRequest<T>(url: string, body?: BodyInit | null, headers?: Record<string, string>, method?: "GET" | "POST"): Promise<T>;
export declare const askToContinue: () => Promise<void>;
export declare function ensureMarketplaceToken(): Promise<string>;
export declare const getAxieId: () => Promise<number | null>;
