import type { Application } from '../../../declarations'; import { ExchangesOhlcvService } from './ohlcv.class'; import { exchangesOhlcvPath } from './ohlcv.shared'; export * from './ohlcv.class'; export * from './ohlcv.schema'; export declare const exchangesOhlcv: (app: Application) => void; declare module '../../../declarations' { interface ServiceTypes { [exchangesOhlcvPath]: ExchangesOhlcvService; } }