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 { InsightsGlobal, InsightsGlobalData, InsightsGlobalPatch, InsightsGlobalQuery } from './global.schema'; export type { InsightsGlobal, InsightsGlobalData, InsightsGlobalPatch, InsightsGlobalQuery }; export interface InsightsGlobalParams extends MongoDBAdapterParams { } export declare class InsightsGlobalService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;