import type { Params } from '@feathersjs/feathers'; import type { MongoDBAdapterOptions, MongoDBAdapterParams } from '@feathersjs/mongodb'; import { MongoDBService } from '@feathersjs/mongodb'; import type { Application } from '../../../declarations'; import type { TasksComments, TasksCommentsData, TasksCommentsPatch, TasksCommentsQuery } from './comments.schema'; export type { TasksComments, TasksCommentsData, TasksCommentsPatch, TasksCommentsQuery }; export interface TasksCommentsParams extends MongoDBAdapterParams { } export declare class TasksCommentsService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;