import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Version, VersionData, VersionPatch, VersionQuery, VersionService } from './version.class'; export type { Version, VersionData, VersionPatch, VersionQuery }; export type VersionClientService = Pick>, (typeof versionMethods)[number]>; export declare const versionPath = "version"; export declare const versionMethods: readonly ['find']; export declare const versionClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [versionPath]: VersionClientService; } }