import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { ExchangesOrderbook, ExchangesOrderbookData, ExchangesOrderbookQuery, ExchangesOrderbookService } from './orderbook.class'; export type { ExchangesOrderbook, ExchangesOrderbookData, ExchangesOrderbookQuery }; export type ExchangesOrderbookClientService = Pick>, (typeof exchangesOrderbookMethods)[number]>; export declare const exchangesOrderbookPath = "exchanges/orderbook"; export declare const exchangesOrderbookMethods: readonly ['find', 'create', 'remove']; export declare const exchangesOrderbookClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [exchangesOrderbookPath]: ExchangesOrderbookClientService; } }