import type { Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../../declarations'; import type { ExchangesArbitrageOpportunities, ExchangesArbitrageOpportunitiesData, ExchangesArbitrageOpportunitiesQuery } from './opportunities.schema'; export type { ExchangesArbitrageOpportunities, ExchangesArbitrageOpportunitiesData, ExchangesArbitrageOpportunitiesQuery }; export interface ExchangesArbitrageOpportunitiesServiceOptions { app: Application; } export interface ExchangesArbitrageOpportunitiesParams extends Params { } export declare class ExchangesArbitrageOpportunitiesService implements ServiceInterface { options: ExchangesArbitrageOpportunitiesServiceOptions; constructor(options: ExchangesArbitrageOpportunitiesServiceOptions); find(params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };