import type { UseUserOrdersReturn } from "./types"; /** * Hook for subscribing to real-time user order events via WebSocket (authenticated) * * Fetches initial orders from the REST API, then subscribes to real-time updates. * Requires authentication - the user must be logged in with a valid JWT token. * User is identified on the backend via the JWT token. * * @param maxOrders - Maximum number of orders to keep in state (default: 50) */ export declare function useUserOrders(maxOrders?: number): UseUserOrdersReturn;