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 { Insights, InsightsData, InsightsPatch, InsightsQuery } from './insights.schema'; export type { Insights, InsightsData, InsightsPatch, InsightsQuery }; export interface InsightsParams extends MongoDBAdapterParams { } export declare class InsightsService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;