import { ListBase, Order, OrdersFilterQuery, OrdersEditionFilterQuery, SingleBase } from '@liqnft/candy-shop-types'; import { AxiosInstance } from 'axios'; export declare function fetchOrdersByStoreId(axiosInstance: AxiosInstance, storeId: string, ordersFilterQuery: OrdersFilterQuery): Promise>; /** * @deprecated The method should not be used. * Please use function fetchOrderByTokenMintAndShopId below */ export declare function fetchOrderByTokenMint(axiosInstance: AxiosInstance, mintAddress: string): Promise>; export declare function fetchOrderByTokenMintAndShopId(axiosInstance: AxiosInstance, mintAddress: string, shopId: string): Promise>; export declare function fetchOrdersByStoreIdAndWalletAddress(axiosInstance: AxiosInstance, storeId: string, walletAddress: string): Promise; export declare function fetchOrdersByStoreIdAndMasterEditionMint(axiosInstance: AxiosInstance, storeId: string, masterMint: string, ordersEditionFilterQuery: OrdersEditionFilterQuery): Promise>;