import { OnInit, EventEmitter } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { AuthenticationService } from '../../services/authentication.service'; import { Router } from '@angular/router'; import { Register, RegisterJWT } from '../../interfaces/authentication.interface'; export declare class AuthRegisterComponent implements OnInit { private authenticationService; private router; createUserForm: FormGroup; existingUser: boolean; socialMedia: boolean; validatedForm: boolean; confirmationPassword: boolean; redirectTo?: string; emailText?: boolean; companyInput?: boolean; profileType?: boolean; profileTypeArray?: string[]; userRegisterData: EventEmitter; userRegisterJWT: EventEmitter; userRegisterError: EventEmitter; constructor(authenticationService: AuthenticationService, router: Router); ngOnInit(): void; passwordConfirming(): boolean; createUser(): void; signUpSocialMedia(socialMedia: boolean): void; }