import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { StoreItems, StoreItemsData, StoreItemsPatch, StoreItemsQuery, StoreItemsService } from './items.class'; export type { StoreItems, StoreItemsData, StoreItemsPatch, StoreItemsQuery }; export type StoreItemsClientService = Pick>, (typeof storeItemsMethods)[number]>; export declare const storeItemsPath = "store/items"; export declare const storeItemsMethods: Array; export declare const storeItemsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [storeItemsPath]: StoreItemsClientService; } }