import type { NullableId, Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../declarations'; import type { ExchangesArbSignals, ExchangesArbSignalsData, ExchangesArbSignalsQuery } from './arb-signals.schema'; export type { ExchangesArbSignals, ExchangesArbSignalsData, ExchangesArbSignalsQuery }; export interface ExchangesArbSignalsServiceOptions { app: Application; } export interface ExchangesArbSignalsParams extends Params { } export declare class ExchangesArbSignalsService implements ServiceInterface { options: ExchangesArbSignalsServiceOptions; constructor(options: ExchangesArbSignalsServiceOptions); private getLatestSignals; find(_params?: ServiceParams): Promise; create(_data: ExchangesArbSignalsData, params?: ServiceParams): Promise; remove(_id: NullableId, params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };