export interface IOrderForm { side: 'buy' | 'sell'; type: 'market' | 'limit'; amount: number; price: number; } //# sourceMappingURL=orderForm.d.ts.map