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