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 { StrategiesFollow, StrategiesFollowData, StrategiesFollowPatch, StrategiesFollowQuery } from './follow.schema'; export type { StrategiesFollow, StrategiesFollowData, StrategiesFollowPatch, StrategiesFollowQuery }; export interface StrategiesFollowParams extends MongoDBAdapterParams { user?: any; } export declare class StrategiesFollowService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;