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