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