import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { ExchangesDownload, ExchangesDownloadData, ExchangesDownloadPatch, ExchangesDownloadQuery, ExchangesDownloadService } from './download.class'; export type { ExchangesDownload, ExchangesDownloadData, ExchangesDownloadPatch, ExchangesDownloadQuery }; export type ExchangesDownloadClientService = Pick>, (typeof exchangesDownloadMethods)[number]>; export declare const exchangesDownloadPath = "exchanges/download"; export declare const exchangesDownloadMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const exchangesDownloadClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [exchangesDownloadPath]: ExchangesDownloadClientService; } }