import type { GetUserOrders } from './types/index.js'; /** * Method responsible for fetching user orders paginated. * If you want to fetch all user orders, pass on either `page` or * `pageSize` properties of the `query` parameter the value `Infinity`. * * @param id - The current user id. * @param query - Pagination information. Possible values: `page`, `pageSize`. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const getUserOrders: GetUserOrders; export default getUserOrders;