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 { Currencies, CurrenciesData, CurrenciesPatch, CurrenciesQuery } from './currencies.schema'; export type { Currencies, CurrenciesData, CurrenciesPatch, CurrenciesQuery }; export interface CurrenciesParams extends MongoDBAdapterParams { } export declare class CurrenciesService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;