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