import { OrderbookObserver, Symbol } from '@melonproject/ea-common';
import { SubscriptionOptionsWithoutSymbol } from '../../api/public/websocket/book';
export interface WatchOptions {
    length?: SubscriptionOptionsWithoutSymbol['length'];
    base: Symbol;
    quote: Symbol;
}
export declare const observe: OrderbookObserver<WatchOptions>;
