import { OnInit, TemplateRef } from '@angular/core'; import { Location } from '@angular/common'; import { Stormpath } from '../stormpath/stormpath.service'; export declare class EmailVerificationComponent implements OnInit { stormpath: Stormpath; location: Location; /** * A reference to a `` tag that if set will override this component's template. Use like so: * ``` * * // custom HTML with login form * * ``` * Then pass customTemplate to the `email-verification` component like so `[customTemplate]="customTemplate"` */ customTemplate: TemplateRef; protected error: string; protected verifying: boolean; protected verified: boolean; protected verificationFailed: boolean; protected sptoken: string; constructor(stormpath: Stormpath, location: Location); ngOnInit(): void; spTokenResolver(): string; verify(): void; }