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