import { SingleBase, ListBase, Auction, AuctionBid, AuctionQuery, AuctionBidQuery } from '@liqnft/candy-shop-types'; import { AxiosInstance } from 'axios'; export declare function fetchAuctionsByShop(axiosInstance: AxiosInstance, shopId: string, queryDto?: AuctionQuery): Promise>; export declare function fetchAuctionBid(axiosInstance: AxiosInstance, auctionAddress: string, walletAddress: string): Promise>; export declare function fetchAuction(axiosInstance: AxiosInstance, auctionAddress: string): Promise>; export declare function fetchAuctionHistoryByAddress(axiosInstance: AxiosInstance, auctionAddress: string, auctionBidQuery?: AuctionBidQuery): Promise>;