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