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 { ExchangesTransactions, ExchangesTransactionsData, ExchangesTransactionsPatch, ExchangesTransactionsQuery } from './transactions.schema'; export type { ExchangesTransactions, ExchangesTransactionsData, ExchangesTransactionsPatch, ExchangesTransactionsQuery }; export interface ExchangesTransactionsParams extends MongoDBAdapterParams { } export declare class ExchangesTransactionsService extends MongoDBService { } export declare const getOptions: (app: Application) => MongoDBAdapterOptions;