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 { AutotuneUsage, AutotuneUsageData, AutotuneUsagePatch, AutotuneUsageQuery } from './usage.schema'; export type { AutotuneUsage, AutotuneUsageData, AutotuneUsagePatch, AutotuneUsageQuery }; export interface AutotuneUsageParams extends MongoDBAdapterParams { } export declare class AutotuneUsageService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;