import { Observable } from 'rxjs'; import { PositionResponse } from '../../../../types'; import { WebsocketInsider } from '../../websocket-insider'; export declare class Position { private readonly ws; constructor(ws: WebsocketInsider); position$(pair?: string | string[]): Observable; stopPosition(pair?: string | string[]): void; }