import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Currencies, CurrenciesData, CurrenciesPatch, CurrenciesQuery, CurrenciesService } from './currencies.class'; export type { Currencies, CurrenciesData, CurrenciesPatch, CurrenciesQuery }; export type CurrenciesClientService = Pick>, (typeof currenciesMethods)[number]>; export declare const currenciesPath = "currencies"; export declare const currenciesMethods: Array; export declare const currenciesClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [currenciesPath]: CurrenciesClientService; } }