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