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