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 { Tasks, TasksData, TasksPatch, TasksQuery } from './tasks.schema'; export type { Tasks, TasksData, TasksPatch, TasksQuery }; export interface TasksParams extends MongoDBAdapterParams { user?: any; } export declare class TasksService extends MongoDBService { setup(): Promise; private ensureIndexes; } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;