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