import { ListBase, Order, SingleBase } from 'solana-candy-shop-schema/dist'; import { AxiosInstance } from 'axios'; export declare type SortBy = { column: string; order: 'asc' | 'desc'; }; export declare type OrdersFilterQuery = { sortBy?: SortBy; offset?: number; limit?: number; }; export declare function fetchOrdersByStoreId(axiosInstance: AxiosInstance, storeId: string, ordersFilterQuery: OrdersFilterQuery, identifiers?: number[]): Promise>; export declare function fetchOrderByTokenMint(axiosInstance: AxiosInstance, mintAddress: string): Promise>; export declare function fetchOrdersByStoreIdAndWalletAddress(axiosInstance: AxiosInstance, storeId: string, walletAddress: string): Promise; //# sourceMappingURL=OrderAPI.d.ts.map