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