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