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