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 { SeriesPerformance, SeriesPerformanceData, SeriesPerformancePatch, SeriesPerformanceQuery } from './performance.schema'; export type { SeriesPerformance, SeriesPerformanceData, SeriesPerformancePatch, SeriesPerformanceQuery }; export interface SeriesPerformanceParams extends MongoDBAdapterParams { } export declare class SeriesPerformanceService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;