import { OnInit, TemplateRef } from '@angular/core'; import { Stormpath, ForgotPasswordFormModel } from '../stormpath/stormpath.service'; export declare class ForgotPasswordComponent implements OnInit { stormpath: Stormpath; /** * 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 `forgot-password-form` component like so `[customTemplate]="customTemplate"` */ customTemplate: TemplateRef; protected forgotPasswordFormModel: ForgotPasswordFormModel; protected error: string; protected sent: boolean; constructor(stormpath: Stormpath); ngOnInit(): void; send(): void; onSubmit(form: any): void; }