export declare function getMidpoint(tokenId: string): Promise; export declare function getOrderbook(tokenId: string): Promise<{ bids: Array<{ price: string; size: string; }>; asks: Array<{ price: string; size: string; }>; }>;