import type { ClientApplication } from '../../client'; import type { User, UserData, UserPatch, UserQuery, UserService } from './users.class'; export type { User, UserData, UserPatch, UserQuery }; export type UserClientService = Pick; export declare const userPath = "users"; export declare const userMethods: readonly ['get', 'create', 'patch', 'find', 'remove']; export declare const userClient: (client: ClientApplication) => void; declare module '../../client' { interface ServiceTypes { [userPath]: UserClientService; } }