import type { NullableId, Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../declarations'; import type { ExchangesOrderbook, ExchangesOrderbookData, ExchangesOrderbookQuery } from './orderbook.schema'; export type { ExchangesOrderbook, ExchangesOrderbookData, ExchangesOrderbookQuery }; export interface ExchangesOrderbookServiceOptions { app: Application; } export interface ExchangesOrderbookParams extends Params { } export declare class ExchangesOrderbookService implements ServiceInterface { options: ExchangesOrderbookServiceOptions; constructor(options: ExchangesOrderbookServiceOptions); find(params?: ServiceParams): Promise; create(data: ExchangesOrderbookData, params?: ServiceParams): Promise; remove(_id: NullableId, params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };