import type { Application } from '../../../declarations'; import { ExchangesTickerService } from './ticker.class'; import { exchangesTickerPath } from './ticker.shared'; export * from './ticker.class'; export * from './ticker.schema'; export declare const exchangesTicker: (app: Application) => void; declare module '../../../declarations' { interface ServiceTypes { [exchangesTickerPath]: ExchangesTickerService; } }