import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { ExchangesOhlcv, ExchangesOhlcvData, ExchangesOhlcvPatch, ExchangesOhlcvQuery, ExchangesOhlcvService } from './ohlcv.class'; export type { ExchangesOhlcv, ExchangesOhlcvData, ExchangesOhlcvPatch, ExchangesOhlcvQuery }; export type ExchangesOhlcvClientService = Pick>, (typeof exchangesOhlcvMethods)[number]>; export declare const exchangesOhlcvPath = "exchanges/ohlcv"; export declare const exchangesOhlcvMethods: readonly ['find', 'create', 'remove']; export declare const exchangesOhlcvClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [exchangesOhlcvPath]: ExchangesOhlcvClientService; } }