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