import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../client'; import type { Keys, KeysData, KeysPatch, KeysQuery } from './keys.class'; import type { KeysService } from './KeysService'; export type { Keys, KeysData, KeysPatch, KeysQuery }; export type KeysClientService = Pick>, (typeof keysMethods)[number]>; export declare const keysPath = "keys"; export declare const keysMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const keysClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [keysPath]: KeysClientService; } }