import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Config, ConfigData, ConfigPatch, ConfigQuery, ConfigService } from './config.class'; export type { Config, ConfigData, ConfigPatch, ConfigQuery }; export type ConfigClientService = Pick>, (typeof configMethods)[number]>; export declare const configPath = "config"; export declare const configMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const configClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [configPath]: ConfigClientService; } }