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