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 { InsightsFearAndGreed, InsightsFearAndGreedData, InsightsFearAndGreedPatch, InsightsFearAndGreedQuery } from './fear-and-greed.schema'; export type { InsightsFearAndGreed, InsightsFearAndGreedData, InsightsFearAndGreedPatch, InsightsFearAndGreedQuery }; export interface InsightsFearAndGreedParams extends MongoDBAdapterParams { } export declare class InsightsFearAndGreedService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;