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 { Keys, KeysData, KeysPatch, KeysQuery } from './keys.schema'; export type { Keys, KeysData, KeysPatch, KeysQuery }; export interface KeysParams extends MongoDBAdapterParams { user?: any; } export declare class KeysService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;