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