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