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 { AutotuneTrial, AutotuneTrialData, AutotuneTrialPatch, AutotuneTrialQuery } from './trials.schema'; export type { AutotuneTrial, AutotuneTrialData, AutotuneTrialPatch, AutotuneTrialQuery }; export interface AutotuneTrialsParams extends MongoDBAdapterParams { user?: any; } export declare class AutotuneTrialsService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;