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