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