import type { Application } from '../../../declarations'; import { ExchangesOrderbookService } from './orderbook.class'; import { exchangesOrderbookPath } from './orderbook.shared'; export * from './orderbook.class'; export * from './orderbook.schema'; export declare const exchangesOrderbook: (app: Application) => void; declare module '../../../declarations' { interface ServiceTypes { [exchangesOrderbookPath]: ExchangesOrderbookService; } }