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 { Events, EventsData, EventsPatch, EventsQuery } from './events.schema'; export type { Events, EventsData, EventsPatch, EventsQuery }; export interface EventsParams extends MongoDBAdapterParams { user?: any; } export declare class EventsService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;