import type { Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../declarations'; import type { ExchangesMarketsStats, ExchangesMarketsStatsData, ExchangesMarketsStatsQuery } from './markets-stats.schema'; export type { ExchangesMarketsStats, ExchangesMarketsStatsData, ExchangesMarketsStatsQuery }; export interface ExchangesMarketsStatsServiceOptions { app: Application; } export interface ExchangesMarketsStatsParams extends Params { } export declare class ExchangesMarketsStatsService implements ServiceInterface { options: ExchangesMarketsStatsServiceOptions; constructor(options: ExchangesMarketsStatsServiceOptions); find(params?: ServiceParams): Promise; private _fetch; } export declare const getOptions: (app: Application) => { app: Application; };