import { Paths } from "../../types/api"; import { Method } from "../../util/Method"; import { ResultObject } from "../../util/ResultObject"; import type { SkyblockAuctionsResponse } from "../../types/AugmentedTypes"; /** * @example * ```typescript * const {auctions} = await client.skyblock.auctions.page(0); * ``` * @category Client */ export declare class SkyBlockAuctions extends Method { /** * Returns SkyBlock auctions that are currently active in the in-game Auction House. * @example * ```typescript * const { auctions } = await client.skyblock.auctions.page(0); * ``` * @category API */ page(page?: Paths.V2SkyblockAuctions.Get.Parameters.Page): Promise>; }