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