import type { Application } from '../../declarations'; import { ExchangesService } from './exchanges.class'; import { exchangesPath } from './exchanges.shared'; export * from './exchanges.class'; export * from './exchanges.schema'; export declare const hooks: any; export declare const exchanges: (app: Application) => void; declare module '../../declarations' { interface ServiceTypes { [exchangesPath]: ExchangesService; } }