import type { ClientService, Paginated, Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../client'; import type { ModelsPods, ModelsPodsData, ModelsPodsPatch, ModelsPodsQuery } from './pods.class'; export type { ModelsPods, ModelsPodsData, ModelsPodsPatch, ModelsPodsQuery }; export type ModelsPodsClientService = ClientService, Params>; export declare const modelsPodsPath = "models/pods"; export declare const modelsPodsMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const modelsPodsClient: (client: ClientApplication) => void; declare module '../../../client' { interface ServiceTypes { [modelsPodsPath]: ModelsPodsClientService; } }