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