import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Markets, MarketsData, MarketsPatch, MarketsQuery, MarketsService } from './markets.class'; export type { Markets, MarketsData, MarketsPatch, MarketsQuery }; export type MarketsClientService = Pick>, (typeof marketsMethods)[number]>; export declare const marketsPath = "markets"; export declare const marketsMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const marketsClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [marketsPath]: MarketsClientService; } }