import { NeftyMarketAuctionsRequest, PayloadNeftyMarketAuctions } from "../types";
export declare class NeftyMarketApi {
    readonly baseUrl: string;
    protected fetch: typeof fetch;
    constructor(baseUrl: string, fetch?: typeof globalThis.fetch);
    getAuctions(params: NeftyMarketAuctionsRequest): Promise<PayloadNeftyMarketAuctions>;
}
