import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Marketplaces, MarketplacesData, MarketplacesPatch, MarketplacesQuery, MarketplacesService } from './marketplaces.class'; export type { Marketplaces, MarketplacesData, MarketplacesPatch, MarketplacesQuery }; export type MarketplacesClientService = Pick>, (typeof marketplacesMethods)[number]>; export declare const marketplacesPath = "marketplaces"; export declare const marketplacesMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const marketplacesClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [marketplacesPath]: MarketplacesClientService; } }