import { AuthenticationManagementBase } from './AuthenticationManagementBase'; import type { SanitizedUser, DataPasswordChange, PasswordChangeOptions, PasswordChangeServiceOptions } from '../types'; import type { Application, Params } from '@feathersjs/feathers'; export declare class PasswordChangeService extends AuthenticationManagementBase { constructor(app: Application, options?: Partial); _create(data: DataPasswordChange, params?: Params): Promise; }