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 { Benchmarks, BenchmarksData, BenchmarksPatch, BenchmarksQuery } from './benchmarks.schema'; export type { Benchmarks, BenchmarksData, BenchmarksPatch, BenchmarksQuery }; export interface BenchmarksParams extends MongoDBAdapterParams { } export declare class BenchmarksService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;