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 { InsightsEtfFlow, InsightsEtfFlowData, InsightsEtfFlowPatch, InsightsEtfFlowQuery } from './etf-flow.schema'; export type { InsightsEtfFlow, InsightsEtfFlowData, InsightsEtfFlowPatch, InsightsEtfFlowQuery }; export interface InsightsEtfFlowParams extends MongoDBAdapterParams { } export declare class InsightsEtfFlowService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;