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