import { SingleBase, WhitelistNft, ShopStatus, CandyShop, ListBase, ShopStatusQuery, ShopQuery, NftCollection, CollectionQuery, Blockchain } from '@liqnft/candy-shop-types'; import { AxiosInstance } from 'axios'; export declare function fetchShopWhitelistNftByShopId(axiosInstance: AxiosInstance, shopId: string): Promise>; export declare function fetchShopByShopId(axiosInstance: AxiosInstance, shopId: string): Promise>; export declare function fetchShopByOwnerAddress(axiosInstance: AxiosInstance, ownerAddress: string): Promise>; export declare function fetchShopByIdentifier(axiosInstance: AxiosInstance, ownerAddress: string, mint: string, programId: string, blockchain: Blockchain): Promise>; export declare function fetchShop(axiosInstance: AxiosInstance, shopQuery?: ShopQuery): Promise>; export declare function fetchShopStatusByShopId(axiosInstance: AxiosInstance, shopId: string, query: ShopStatusQuery): Promise>; export declare function fetchCollection(axiosInstance: AxiosInstance, collectionQuery?: CollectionQuery): Promise>; export declare function fetchCollectionByShopId(axiosInstance: AxiosInstance, collectionQuery?: CollectionQuery): Promise>;