import type { Params } from '@feathersjs/feathers'; import type { MongoDBAdapterOptions, MongoDBAdapterParams } from '@feathersjs/mongodb'; import { MongoDBService } from '@feathersjs/mongodb'; import type { Application } from '../../declarations'; type Config = any; type ConfigData = any; type ConfigPatch = any; type ConfigQuery = any; export type { Config, ConfigData, ConfigPatch, ConfigQuery }; export interface ConfigParams extends MongoDBAdapterParams { } export declare class ConfigService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;