import type { Params } from '@feathersjs/feathers'; import type { IdentifyUser, ResetPasswordOptions, ResetPwdWithShortTokenOptions, SanitizedUser, NotifierOptions } from '../types'; export declare function resetPwdWithLongToken(options: ResetPasswordOptions, resetToken: string, password: string, notifierOptions?: NotifierOptions, params?: Params): Promise; export declare function resetPwdWithShortToken(options: ResetPwdWithShortTokenOptions, resetShortToken: string, identifyUser: IdentifyUser, password: string, notifierOptions?: NotifierOptions, params?: Params): Promise;