import type { AuthenticationClient } from '@feathersjs/authentication-client'; import type { Application } from '@feathersjs/feathers'; import type { AuthenticationManagementClient, ClientOptions } from './types'; declare module '@feathersjs/feathers' { interface Application { authenticate: AuthenticationClient['authenticate']; logout: AuthenticationClient['logout']; } } declare function makeClient(app: Application, _options?: Partial): AuthenticationManagementClient; export default makeClient;