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