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 { UsersSessions, UsersSessionsData, UsersSessionsPatch, UsersSessionsQuery } from './sessions.schema'; export type { UsersSessions, UsersSessionsData, UsersSessionsPatch, UsersSessionsQuery }; export interface UsersSessionsParams extends MongoDBAdapterParams { } export declare class UsersSessionsService extends MongoDBService { private static readonly ENRICH_FIELDS; upsertSession(data: UsersSessionsData, params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;